$(document).ready(function() {
	
	$('#free_del').width($('#free_del').parent().width());
	
	$('#header li a').removeClass('current');
	$('#header li a').eq(page).addClass('current');
						   
	$(window).bind("load", function(){							
		$('#cycle').cycle({timeout: 0, speed:  300});
	});
	
	
	
	$('#thumbs a')
	.hover(
						 
	 function(){
		 $(this).animate({marginTop: 0,	borderBottomWidth: "23px"},{queue: false});
		 cyclepos = $('#thumbs a').index(this);
		 $('#cycle').cycle(cyclepos);
	 },
	 
	 function(){
		 $(this).animate({marginTop: 19, borderBottomWidth: "3px"},{queue: false});
	 })
	.click(function(){
		return false;	 
	});
	
	
});
