// JavaScript Document

function preloadImages() {
var d = document;
if(d.images) {
if(!d.p) d.p = new Array();
var i,j = d.p.length, a = preloadImages.arguments;
for(i = 0; i < a.length; i++)
if (a[i].indexOf("#") != 0) {
d.p[j] = new Image;
d.p[j++].src = a[i];
}}}

function show_lb(i) {
	document.getElementById('lb'+i).onclick();	
}

function change_sendto(type,prefix) {
	if(prefix==null) {
		var prefix='';	
	}
	if(type=='email') {
		
		document.getElementById(prefix+'friend1').style.display='none';
		document.getElementById(prefix+'email1').style.display='block';
		
	} else {
		document.getElementById(prefix+'friend1').style.display='block';
		document.getElementById(prefix+'email1').style.display='none';
	}
}

function update_styleselect(categorieid,selectedvalue) {
	if(selectedvalue==null) {
		selectedvalue='';	
	}
	$('#styleid').load(url+'extra/styles/'+categorieid+'/'+selectedvalue);

}

function construct_search() {
	document.location=url+'site/search/'+document.getElementById('searchselect').options[document.getElementById('searchselect').selectedIndex].value+'/'+$('#keyword').attr('value');
}
