// JScript File
jQuery(document).ready(function () {
    	jQuery.noConflict();
    
	jQuery('.lavaLampWithImage').lavaLamp({
		fx: 'backout',
		speed: 800,
	        click: function(event, menuItem) {
	            return true;
	        }
	});
	
	jQuery("body").prepend('<div id="propostemenu"></div>');
    
    jQuery("#propostemenu").dialog({
        bgiframe: true,
        autoOpen: false,
        width: 780,
        height: 750,
        closeOnEscape: false,
        modal: true,
        resizable: false,
        draggable: false
    });    

});

//png fix
jQuery(function(){jQuery(document).pngFix();});

function propostemenu(id){
    jQuery("#propostemenu").load("dettaglioNews.aspx?id=" + id ,'',function(){
        jQuery("#propostemenu").dialog('open');
    });
}
