
$(document).ready(function() {
	
	
	// SELECT RANDOM IMAGE FROM PHOTOS PAGE
	
	var rand = Math.floor(Math.random()*11);
	$('#body_photos .flt_links.photos li').eq(rand).addClass('rot');
	var rand2 = Math.floor(Math.random()*11);
	$('#body_photos .flt_links.photos li').eq(rand2).addClass('rot');
	
	

	$('#body_photos .flt_links.photos li:nth-child(4n)').addClass('last');
	
		
	
	
	
	
/*	$('#contact_form').submit(function(){
			$.post('mail.php',$(this).serialize(),null,"script");
			return false;
			
		});
	*/
	
	
});







