$(document).ready(function() {
	
	// expand page width/height 100%
	$(window).resize(function () {
		 $('.push').css({'height':(($(window).height()))+'px'});	
	}).resize();
	
	// menu expand
	$('#menu').hover(function() {
	  $(this).parents().find('#menu').delay(400).stop(true, true).animate({'left' : "-40px" }, 250);
	  $('.push').find('img').attr('src', 'files/Templates/Designs/clipper/images/pushIn.png');
	
	}, function() {
	  $(this).parents().find('#menu').stop(true, true).animate({'left' : "-450px" });
	  $('.push').find('img').attr('src', 'files/Templates/Designs/clipper/images/pushOut.png');
	});
	
	// close left menu on click
	$('#menu ul li a').click(function () {
		$(this).parents().find('#menu').stop(true, true).animate({'left' : "-450px" });
	})
	
	// Iframe videos
	$(".iframe").fancybox({
			'width'			: 569,
			'height'		: 320,
			'padding'		: 0,
			'autoScale'		: true,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'easingIn' 		: 'easeOutBack',
			'easingOut' 	: 'easeInBack',
			'overlayShow'	: true,
			'type'			: 'iframe'
	});
	
	// Make border disappear in all browsers
  	$(function(){
     	$("#menu ul li:last-child").css("margin-top","50px");
  	});
  

});
					
					

