/*$(document).ready(function() {
	$(document).pngFix( { blankgif:'ext.gif' } );
}); */
	
$(document).ready(function() {
	$("a.fancyBox").fancybox({
		'overlayShow':	true
	});
	
	$("a.fancyBoxMovie").fancybox({
		'overlayShow':	true,
		'frameWidth': 549, //520
		'frameHeight': 350, //330
		callbackOnClose: function() {
			$("#fancy_content").empty();
      	} 
	});
	
	$("a.fancyBoxMovie2").fancybox({
		'overlayShow':	true,
		'frameWidth': 669, //640
		'frameHeight': 509, // 480
		callbackOnClose: function() {
			$("#fancy_content").empty();
      	} 
	});
});

$(document).ready(function(){
	$("#ko-events a.show-me").each(function (intIndex) {
		
		$("#my-event-"+intIndex).hide();
		
		$("#show-me-"+intIndex).mouseover(function () {
	    	$("#my-event-"+intIndex).show("fast", function () {
	    		$(this).next().toggle("fast", arguments.callee);
	    	});
	    }).mouseout(function () {
    		setTimeout(function() { $("#my-event-"+intIndex).hide("fast"); }, 1000);
	    });
	});
});
