$(window).load(function() {
    $('#slider').nivoSlider({
		effect:'fade',
		slices:3,
		pauseTime:3000,
		animSpeed:300,
		directionNav:false,
		controlNav:true
	});
	
	$('#slider2').nivoSlider({
		effect:'fade',
		slices:3,
		pauseTime:5000,
		animSpeed:300,
		captionOpacity:0.0,
		directionNav:false,
		controlNav:true
	});
	
	$('select').selectbox();
});


function PrintElem(elem)
{
    Popup($(elem).text());
}

function Popup(data) 
{
    var mywindow = window.open('', 'my div', 'height=400,width=600');
    mywindow.document.write('<html><head><title></title>');
    mywindow.document.write('<link rel="stylesheet" href="/randomhouse/wp-content/themes/randomhouse/style.css" type="text/css" />');
    mywindow.document.write('</head><body >');
    mywindow.document.write(data);
    mywindow.document.write('</body></html>');
    mywindow.document.close();
    mywindow.print();
    return true;
}



