



			$(document).ready(function()
			{		
			
     $('#headercontact').hide();
	 $('#headercontact').show("12000");
     $('img.testclick').hide();
	 $('img.testclick').fadeIn("1000");	
     $('img.makeselection').hide();
     $('#countrydivcontainer').hide();
	 $('#countrydivcontainer').fadeIn("200");	
				   //$('#countrydivcontainer').hide(); // Hide even though it's already hidden
   $('#btnFilter').click(function() {
	 $('img.testclick').hide();
	 $('img.testclick').fadeIn("1000");
     $('img.makeselection').fadeIn("200");
      $('#countrydivcontainer').fadeOut("200"); 
      //return false;
	     });

   $('img.testclick').click(function() {
									 
     $('img.makeselection').hide();
     $('#countrydivcontainer').hide();

      $('#countrydivcontainer').fadeIn("200"); 
      //return false;
	     });
				
				
				
				$("#btnFilter").click(function()
				{
					var workType	= $("#workType").val();
					var workTypeSelector = '';					

					if (workType == "all")
					{
						//show all items
						$(".item").show();
					}
					else
					{
						if (workType != "all")
						{
							workTypeSelector = '.' + workType
						}
						
						
					
						$(".item").hide();
						$(workTypeSelector).show();
					}
					
				});
				
			});

