// JS Compilation Effects


// Site Menu Effect
//$(function() {
//	$("#menuSlider").lavaLamp({
//		fx: "backout", 
//		speed: 700,
//		click: function(event, menuItem) {
//			return true;
//		}
//	});
//});



// Current Project Slider
$(function() {

});

// General
$(document).ready(function(){
	$('.submenu ul').hide();
	$("#imgLink img").hover(
		function(){
			this.src = this.src.replace("_btn","_over");
		},
		function(){
			this.src = this.src.replace("_over","_btn");
		}
	);
	$('.submenu').hover(function(){
		$(this).children('ul').show();
		},function(){
		$(this).children('ul').hide();
	});
						   
	$(".sendtofriend_popup").colorbox({
		width:"765px", 
		height:"400px", 
		iframe:true
	});

	$(".video_popup").colorbox({
		width:"380px", 
		height:"390px", 
		iframe:true
	});

});	


window.onload = function(){
	//$('.submenu ul').show();
}






