﻿$(document).ready(function() {

	jQuery.fn.exists = function(){return jQuery(this).length>0;}

	//table
	$('table tr:first-child').addClass('first');
	$('table tr:even').addClass('even');

	// Flash animation

			$('#anim').flash({
		    	src: 'flash/flash_03.swf',
		   	 	width: 1092,
		    	height: 67,
		    	wmode: 'transparent',
		    	expressInstall: true
		    });


	//first link in gallery row
	$('#gallery-index section a:first-child').addClass('first_link');


	// Focus border remove

			$("a").focus(function() {
				$(this).blur();
			});





	// Lightbox

			if ($("#gallery").exists()) {
				$("#gallery a").fancybox({
					'titlePosition'	: 'over'
				});
			}





	// Menu Drop-Down:

			$(".menu_head").click(function() {
				$(".menu_body").slideUp (300);
				$(this).next(".menu_body").slideToggle(300);
			});

			$(".hit").next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");



});

