$(function(){
$('#loginform').slidinglabels({
	
		/* these are all optional */
		className    : 'login-slider', // the class you're wrapping the label & input with -> default = slider
		topPosition  : '5px',  // how far down you want each label to start
		leftPosition : '5px',  // how far left you want each label to start
		axis         : 'y',    // can take 'x' or 'y' for slide direction
		speed        : 'fast'  // can take 'fast', 'slow', or a numeric value

	});


	$('#contactform').slidinglabels2({
	
		/* these are all optional */
		className    : 'form-slider', // the class you're wrapping the label & input with -> default = slider
		topPosition  : '5px',  // how far down you want each label to start
		leftPosition : '5px',  // how far left you want each label to start
		axis         : 'x',    // can take 'x' or 'y' for slide direction
		speed        : 'fast'  // can take 'fast', 'slow', or a numeric value

	});	

});

function addreq(name, pdt){
	$.post("addreq.php?name="+name+"&pdt="+pdt, function(data){
   $('#status').replaceWith('<div id="status">'+data+'</div>');
 });
 
 

 	
}
function refre() {
	$('#np').load("now_playing.php");
	
   if (document.images['wvtccam']){
   		document.images['wvtccam'].src = 'http://www.wvtc.net/video.jpg?' + Math.random();
   }
   setTimeout('refre()',1000); // refresh every 1 secs
}
