// JavaScript Document
$(document).ready(function(){
	
	/* Navigation */
	if($(".refblock_img").length > 0 ){
		$(".refblock_img a").fancybox({
			'overlayShow':	true
		});
	}

	/* save notes form */ 
	if($('#form').length > 0 ){
		$('#form').ajaxForm(function(response){
			
			if(response.indexOf('error') == -1){
				//this means the form is ok to send, so hide it or something
				
				$('#form').hide();
				$('#formholder').html(response);
			}
			$('#submit').show();
			$('#loader').hide();
			$('#fb_ins').html(response);
			$('#fb').show();
			return false; 
		});
	}

}); //ends doc.ready


function sc(pn){
	np=-1*(pn*552);
	$('.slides').stop().animate({left:np});
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=650,height=600');");
}


