function image_pop(url,caption,width,height) {
	var left = Math.ceil((screen.width-width)/2);
	var top =  Math.ceil((screen.height-height)/2); 
	var attr = "left="+left+",top="+top+",height="+height+",width="+width+",scrollbars=yes";
	var newwindow = window.open(url,escape(caption),attr);
	if (window.focus) {newwindow.focus()}
}
window.onload = function(){
	var im = new Image(); im.src="/media/site/naviOn.png";
//	$('body').supersleight({shim: '/media/site/transparent.gif'});
	$('div.SelectCountry').hover(function(){$(CountryTarget).fadeIn(500);},function(){$(CountryTarget).fadeOut(500)});
	$('img.ProductRangeImage').hover(function(){$(this).fadeTo("fast",0.3)},function(){$(this).fadeTo("fast",1)});
};
function rate_asset(x,asset) {
	$.get("rate", { id:asset, rating:document.getElementById(x)[document.getElementById(x).selectedIndex].value},function(data){alert("" + data);window.location.reload();} );
}
function suggest(x) {
	$.get("/suggest",{key:x},function(data){document.getElementById("SearchPrompt").innerHTML=data;});
}
function select_suggest(x) {
	document.getElementById("SearchPrompt").innerHTML="";
	document.getElementById("SearchInput").onclick = function(){};
	document.getElementById("SearchInput").value = x;
	document.getElementById("SearchInput").focus();
}