// remap jQuery to $
(function($){

 





 



})(window.jQuery);;
// remap jQuery to $
(function($){


$("#heroWrap").tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 5000);
	$('#heroWrap').hover(function(){
			$(this).tabs('rotate', 0, false);
		},function(){
			$(this).tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 5000);
		}
	);


function autoFill(id, v,c){
	$(id).css({ color: c }).attr({ value: v }).focus(function(){
		if($(this).val()==v){
			$(this).val("").css({ color: "#333" });
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).css({ color: c }).val(v);
		}
	});

}
$('#headliner > div').css('zIndex',1);
$('#headliner > div ').hover(function(){$(this).css('zIndex',10000)},function(){$(this).css('zIndex',1)});
		
})(window.jQuery);


;

