
$(document).ready(function(){
	big_theme();
});


function big_theme() {
   $("ul#big_theme > li > h3 > a").hover(function() {
		$("div.page").addClass($(this).attr('id'));	
	}, function() {
		$("div.page").removeClass($(this).attr('id'));	
	});
}





