$(document).ready(function(){

	jQuery(function(){
		jQuery('ul.sf-menu').superfish( {
		
			animation: { opacity:'show' }, 
			speed: 'fast'
		
		});
	});

	$('#breaking-news ul').after('<div id="bn-controls"><a href="#" id="bn-prev" class="bn-link">&nbsp;</a><a href="#" id="bn-next" class="bn-link">&nbsp;</a></div>').cycle({
		fx: 'scrollHorz',
		speed: 'fast',
		timeout: 6000,
		next: '#bn-next',
		prev: '#bn-prev'
	});

	$("#primetime").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	
	$("#mytdp-user-edit-tabs").tabs();
	
	$('input#group-contact-toggle').change( function() {
	
		var name_disabled=$('input#group-contact-name').attr('disabled');
		var email_disabled=$('input#email-contact-name').attr('disabled');
		var phone_disabled=$('input#phone-contact-name').attr('disabled');
		
		if(name_disabled)
			$('input#group-contact-name').attr('disabled',false);
		else
			$('input#group-contact-name').attr('disabled',true);
			
		if(email_disabled)
			$('input#group-contact-email').attr('disabled',false);
		else
			$('input#group-contact-email').attr('disabled',true);
			
		if(phone_disabled)
			$('input#group-contact-phone').attr('disabled',false);
		else
			$('input#group-contact-phone').attr('disabled',true);
	
	});
	
	/*$(".form input").focus(function() {
		$(this).parent().addClass("curFocus")
	});
	$(".form input").blur(function() {
		$(this).parent().removeClass("curFocus")
	}); */

	
});