var $j = jQuery.noConflict();

$j(document).ready(function() { 

	$j(".arrow").click(function(){
	 	$j(this).parent().toggleClass("open");
	 	return(false);
	// 	$j(this).parent().find("ul").slideToggle('1500');
	});
	
	$j(".fancyInline").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
	$j(".fancyImage").fancybox();
	
	$j("input[type*='text']").focusin(function(){
			$j(this).addClass("active");
	});
	$j("input[type*='text']").focusout(function(){
			$j(this).removeClass("active");
	});
	
});
