﻿$(document).ready(function() {
	
	
	$(document).pngFix();







	// Focus border remove

			$("a").focus(function() {
				$(this).blur();
			});
		
	
	
	
	
	// Lightbox

			$(".gallery a, .lightbox").prettyPhoto({theme:'facebook'});	
	


	
	
	
	// Menu Drop-Down:
	
			$(".menu_head").click(function() {
				$(this).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");	
			});
		
		
			$(".hit").next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");




	




	// Rest

		$("h1:eq(1)").css({ paddingTop: '20px' });
		
		
		$('#callback input[type="text"]').focus(function() { $(this).val(''); });


});



