$(document).ready(function() {

	/* PNG Fix */
	$(document).pngFix(); 
	
	$("#support-launch a.launch").fancybox({
	  'AddSomeClass':		true,
		'frameWidth':		600,
		'frameHeight':		420,
		'padding':			0,
		'imageScale':		false,
		'overlayShow':		true,
		'overlayOpacity':	0.3,
		'hideOnContentClick':	false,
		'centerOnScroll': 	false
	});
	
	$("#support-form .support-choose").hover(function(){
		$(this).stop(true, true);
    	$(this).children("ul").fadeIn("fast");
	},
	function(){
		$(this).children("ul").fadeOut("fast");
	});
	
	$("#support-launch").hover(function(){
		$(this).stop(true, true);
    	$(this).animate({ left: '-3px' }, 200);
	},
	function(){
		$(this).animate({ left: '0px' }, 200);
	});
  
	
});