$(document).ready(function(){
	// apply ifixpng
	//$('img[@src$=.png]').ifixpng(); 
	$('.hidden').hide();		
	$('.rounded').corner();
	$('.roundtop').corner('top');
	$('.roundbottom').corner('bottom');
	 // Toggle (piilotus ja näyttö)
    $("#serviceCategoryHelp").click(function() {
	    $("#serviceCategoryInfo").toggle('slow');
	   });
	    $("#artistHelp").click(function() {
	    $("#artistInfo").toggle('slow');
	   });
		    $("#serviceHelp").click(function() {
	    $("#serviceInfo").toggle('slow');
	   });
	});// end onload

function displayImage(src,target,width,alt){
//	alert('displayImage:'+src+','+target+','+width);
	if(arguments[4]){ 
		$('.propertyInfoOnImage a').attr('href',arguments[4]);
		$('#'+target).empty().html('<a href="'+arguments[4]+'" class="thickbox"><img border="0" src="'+src+'" alt="'+alt+'"></a>');
		tb_init('a.thickbox, area.thickbox, input.thickbox');
	}
else	$('#'+target).empty().html('<img src="'+src+'" alt="'+alt+'">');
}