﻿$(document).ready(function() {

	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
/*
	
	$(".menu_head").click(function() {
		$(this).css({background: "#feffff url(images/arrow.gif) no-repeat left 13px"}).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");
		$(this).siblings().css({background: "url(images/dot2.gif) repeat-x bottom"});
	});

	$(".hit").css({background: "#feffff url(images/arrow.gif) no-repeat left 13px"}).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");
	$(".hit").siblings().css({background: "url(images/dot2.gif) repeat-x bottom"});
*/

	$("a").focus(function() {
		$(this).blur();
	});

	//$(".lightview").lightbox({fitToScreen: true});
	$(".lightview").lightBox({fixedNavigation:true});

});



