$(document).ready(function(){
	$("div.children").hide();
	$('#dropdown ').hover(
			function () {
				$('#dropdown > div.children').slideDown(300);
			},
			function () {
				$('#dropdown > div.children').hide();
			}
		);

	$('#dropdown_2 ').hover(
			function () {
				$('#dropdown_2 > div.children').slideDown(300);
			},
			function () {
				$('#dropdown_2 > div.children').hide();
			}
		);
	$('#dropdown_3 ').hover(
			function () {
				$('#dropdown_3 > div.children').slideDown(300);
			},
			function () {
				$('#dropdown_3 > div.children').hide();
			}
		);

	$('a.pirobox_gall1 > img').hover(
			function () {
				$(this).animate({'opacity':'1' , 'margin-top':'-6px'},200);
			},
			function () {
				$(this).animate({'opacity':'.5' , 'margin-top':'0px'},200);
			}
		);
	$('img.gallery, img.facebook').hover(
			function () {
				$(this).animate({'opacity':'1' , 'margin-top':'-5px', 'margin-bottom':'5px'},200);
			},
			function () {
				$(this).animate({'opacity':'.8' , 'margin-top':'0px', 'margin-bottom':'0px'},200);
			}
		);
		$('#big_video').hover(
			function () {
				$(this).find('img').animate({'opacity':'1' , 'margin-top':'-6px'},200);
			},
			function () {
				$(this).find('img').animate({'opacity':'.5' , 'margin-top':'0px'},200);
			}
		);


});

