jQuery.noConflict();
jQuery(document).ready(function() {
	var numImgs = 7;
	var headImg = jQuery(".headImg").text();
//	if(window.headImg === undefined){
	if(!headImg){
		var currentTime = new Date()
		var headImg = currentTime.getMilliseconds();
		headImg = (headImg % numImgs)+1;
		setImg(headImg);
	}else{
		if (headImg.indexOf("swf") == -1){
			setImg(headImg);
		}else{
			headImg = headImg.substring(0, headImg.indexOf("swf"));
			setFlash(headImg);
		}
	}
});

function setImg(imgName){
	var src = "templates/nnc/images/Visual_" + imgName + ".jpg"; 
	jQuery("#header-b").css('backgroundImage','url(' + src +')'); 
};
function setFlash(flashName){
	var flahObj = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="958" height="260" id="FlashID" title="Header Residenza Castelvetro">\n';
	flahObj += '<param name="movie" value="templates/nnc/images/Visual_' + flashName + '.swf" />\n';
	flahObj += '<param name="quality" value="high" />\n';
	flahObj += '<param name="swfversion" value="9.0.45.0" />\n';
	flahObj += '<param name="expressinstall" value="Scripts/expressInstall.swf" />\n';
	flahObj += '<param name="wmode" value="transparent" />\n';
	flahObj += '<param name="SCALE" value="exactfit" />\n';
	flahObj += '<!--[if !IE]>-->\n';
	flahObj += '<object type="application/x-shockwave-flash" data="templates/nnc/images/Visual_' + flashName + '.swf" width="958" height="260">\n';
	flahObj += '<!--<![endif]-->\n';
	flahObj += '<param name="quality" value="high" />\n';
	flahObj += '<param name="swfversion" value="9.0.45.0" />\n';
	flahObj += '<param name="expressinstall" value="Scripts/expressInstall.swf" />\n';
	flahObj += '<param name="wmode" value="transparent" />\n';
	flahObj += '<param name="SCALE" value="exactfit" />\n';
	flahObj += '<div>\n';
	flahObj += '<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>\n';
	flahObj += '<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>\n';
	flahObj += '</div>\n';
	flahObj += '<!--[if !IE]>-->\n';
	flahObj += '</object>\n';
	flahObj += '<!--<![endif]-->\n';
	flahObj += '</object>\n';
	jQuery("#flash-h").html(flahObj);
};