$(document).ready(function()
{						   
	/* EPOXY2GO */

	$('#xbutton').hover(
		 function()
		 { 
			$('#xbutton').animate({
				left: '+=240', 
				'easing': 'swing'
			});
		 },
		 function(){ 
			$('#xbutton').animate({
				left: '-=240', 
				'easing': 'swing'
			});
		 }
	 );


	/* CALLBACK */ 


	$("#btnCallback").colorbox({width:"340px", height:"450px",iframe:true, onOpen:function(){ $("#colorbox").removeClass("colorboxontop"); } });
	
	if ($("#btnBrochure")){
		$("#btnBrochure").colorbox({width:"1100px", height:"850px",iframe:true, onOpen:function(){ $("#colorbox").removeClass("colorboxontop"); } });
	}

});

