$(document).ready(function(){
	var gid = $(document).getUrlParam("gid");	
	
	if (gid == null) {
		gid = "";
	}

	//$('#product_menu').xmlmenu({xml:"data/productmenu.xml"});
	$('#product_menu').xmlmenu({xml:"data/products_drop.php"});
	$('#references_menu').xmlmenu({xml:"data/references_drop.php"});

			
	var imgsrc = $('#claim').attr("img");
	
	$('#claim').hide()
		.html("<img src='"+imgsrc+"' />")
		.click(function(){$(this).fadeOut();});

	$('#showClaim').click(function(e){
		
		
		$('#claim').fadeIn();
		
		e.preventDefault();
		return false;
	})
	
	//$('#slidemenu').slidemenu({url:"data/menu00.xml"});
	//$('#slidemenu').slidemenu({url:"mainmenu.xml"});
	
	$('#slidemenu').slidemenu({url:"data/productmenu.php?gid="+gid});
	
	$(document).pngFix();
});