$(document).ready(function(){	
	$("#heat_busters img").hover(
		function(){
			$(this).width(166);
			$(this).height(204);
		},
		function(){
			$(this).width(168);
			$(this).height(206);
		}
	);
	
	$("#sunday_brunch img").hover(
		function(){
			$(this).width(166);
			$(this).height(137);
		},
		function(){
			$(this).width(168);
			$(this).height(139);
		}
	);
	
	$("#you_take img").hover(
		function(){
			$(this).width(166);
			$(this).height(204);
		},
		function(){
			$(this).width(168);
			$(this).height(206);
		}
	);
	
	$("#petsare_allowed img").hover(
		function(){
			$(this).width(166);
			$(this).height(137);
		},
		function(){
			$(this).width(168);
			$(this).height(139);
		}
	);
	
	$("#get_healthy img").hover(
		function(){
			$(this).width(167);
			$(this).height(111);
		},
		function(){
			$(this).width(169);
			$(this).height(113);
		}
	);
	
	$("#japanese_to_go img").hover(
		function(){
			$(this).width(167);
			$(this).height(111);
		},
		function(){
			$(this).width(169);
			$(this).height(113);
		}
	);
	
	$("#treats_for img").hover(
		function(){
			$(this).width(167);
			$(this).height(111);
		},
		function(){
			$(this).width(169);
			$(this).height(113);
		}
	);

	$("#venues_week_content a.a_no_hover").hover(
		function(){
			$(this).parent().addClass("item_hover");
		},
		function(){
			$(this).parent().removeClass("item_hover");
		}
	);
	
	$(function() {
		$(".container").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			auto: 5000,
			speed: 1000,
			scroll: 1,
			visible: 5
	
		});
	});
	
	$("#slideshow_box .slide_box").hover(
		function(){
			$(this).addClass("slide_box_hover");
		},
		function(){
			$(this).removeClass("slide_box_hover");
		}
	);

	$("#month_specs_content img").hover(
		function(){
			$(this).addClass("hover");
			$(this).parent().parent().addClass("spec_image_box_hover");
		},
		function(){
			$(this).removeClass("hover");
			$(this).parent().parent().removeClass("spec_image_box_hover");
		}
	);

});
