$(document).ready(function(){
	$('#menu').append('<div class="safariFix"></div>');
	
	$('#menu').append('<div class="Contact">' + $('.Contact').html() + '</div>');
	$('.Contact:has(span):not(div)').remove();
	
	$('.Contact').css({display:"none"}).bind("mouseenter focus", function(){
		holdContact = 1;
	}).bind("mouseleave blur", function(){
		holdContact = 0;
		setTimeout('closeContact();',200);
	});

	$('#menuContact').bind("mouseenter focus", function(){
		$('.Contact').show(200,function(){$(this).stop();});
	}).bind("mouseleave blur", function(){
		holdContact = 0;
		setTimeout('closeContact();',200);
	});
	$('.Contact').bind("click", function(){
		parent.location='mailto:info@imagesinteralia.com'
	});
	
});


var holdContact;

function closeContact() {
  if(!holdContact){
    $('.Contact').hide(250);
    holdContact = 0;
  }
}

function addCSS(cssCode) {
	var styleElement = document.createElement("style");
  styleElement.type = "text/css";
  if (styleElement.styleSheet) {
    styleElement.styleSheet.cssText = cssCode;
  } else {
    styleElement.appendChild(document.createTextNode(cssCode));
  }
  document.getElementsByTagName("head")[0].appendChild(styleElement);
}

var setURLHash = function(newhash) {
  var url = window.location.href;
  url = (!url.match('#'))?url+'#':url.substr(0,url.indexOf('#')+1);
  window.location.href = url+newhash;
};
