$(document).ready(function(){
	
	// Curl the magazine's page.
	$("#current_cover").hover(function(){
		$("#current_cover #curl, #current_cover span").stop().animate({
			width:"140px",
			height:"145px"
			},500);
	},function(){
		$("#current_cover #curl").stop().animate({
			width:"35px",
			height:"37px"
		},220);
		$("#current_cover span").stop().animate({
			width:"35px",
			height:"35px"
		},200);
	})
	
	// Auto-submit the drop-down box.
	$("#other_categories select").change(function(){
		$("#other_categories form").submit();
	});
});