/*
	By Oto Brglez - <oto.brglez@opalab.com> for VBG.si - www.vbg.si
*/

$(function(){
	
	if($("#ny").length == 0) return;

	// Show with fade
	
	$("#ny").fadeIn("slow");

	// Closing #NY
	
	$("#ny .ny-tools a").bind("click",function(e){
		if(e.preventDefault) e.preventDefault();
		$("#ny").fadeOut("slow",function(){
			$("#ny").remove();
			// You can add some cookie code here ;)
		});
	});

	// Hover li
	
	$('#ny .ny-grid li').live('mouseover mouseout', function(event) {
		if (event.type == 'mouseover') {
			$(this).addClass("hover");
		} else {
			$(this).removeClass("hover");
		}
	});

	


});

