jQuery(document).ready(function($){
	/* Fix unknown height issue  */
	var roundedHeight = Math.round($("#container").height()/57);
	$("#container").height(roundedHeight*57.2);

	// Initiate Galleries
	var options = {
            caption:    false,
            navigation: 'permanent',
            direction:  'right',
			zindex: 10000
        }
    
    $('.imgGallery').popeye(options);

	$(".popMeUp").click(function(){
		var href = $(this).attr("href");
		var title = $(this).attr("title");
		var rel = $(this).attr("rel");
		var rev = $(this).attr("rev");
		
		if (rel == "youtube")
			href = "youtube.php?video=" + rev; 

		var newWindow = window.open(href, title, 'width=640,height=510,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no,status=no,copyhistory=no');

		return false;
	});

});
