

$(function() 
{
	/**
	* Top search
	*/
	var noValue = 'Produktnamn eller art.nr';
	var topSearch = $("input#topsearch");
	topSearch.focus(function() { if ( $(this).val() == noValue ) { $(this).val(''); }; $(this).css("color","#000000"); });
	topSearch.blur(function() { if ( $(this).val() == '' ) { $(this).val(noValue); }; $(this).css("color","#c1bcb1"); });
	$("form#formtopsearch").submit(function () { 
		if (topSearch.val() == '' || topSearch.val() == noValue)
		{ alert('Du måste ange något att söka efter'); return false; }
	});
	
	$('a[@rel*=lightbox]').lightBox();
});

function showDiv(id)
{
	$(id).show('slow');
}

function folderDownload()
{
	alert("download" + $("#pdfval"));
}

