// JavaScript Document
$(document).ready(function()						
{
	$("a[rel='feedback_f']").colorbox({width:"450px", height:"500px", iframe:true,opacity: 0.8});	
	$("a[rel='emergency_f']").colorbox({width:"750px", height:"600px", iframe:true,opacity: 0.8});	
	//$("a[rel='feedback_f']").mouseover(function(){$(this).animate({left: "35px"},100)});
	//$("a[rel='feedback_f']").mouseout(function(){$(this).animate({left: "30px"},100)});
	
	//Scrolling help / questions / contact form button
	$(window).scroll(function()
	{
		$('#emergency').animate({top:$(window).scrollTop()+150 },{queue: false, duration: 350});  
  		$('#feedback').animate({top:$(window).scrollTop()+330 },{queue: false, duration: 450});  
	});		
});