$(document).ready(function() {
	

	$('.testor').hide();
	
	
	$('.rsstopic').change(function() {
		var customurl = base_url+'rss/';
		
				
		$('.rsstopic').each(function() {
			var checked = $(this).attr('checked');
			
			if (checked) {
				$('.testor').fadeIn('slow');
			}
			
			/*
			if(checked == true)
				{
					customurl += '/'+$(this).val();
				}
			*/
		});
		
		
		
		/*
		if(customurl == base_url+'rss/drills/god/creation/the-bible/sin/salvation/relationships/finances/career/health/heaven/life-of-purpose') {
			customurl = base_url+'rss/drills';
		}
		*/
		$('#customFeedUrl').html('<a href="'+customurl+'">'+customurl+'</a>');
		
	});
	//For the main nav drop-down
	$('.drop').hide();
	
	$('#topNav li').hover(
		function() {
			$(this).children('.drop').not(':visible').fadeIn(150);
		},
		function() {
			$(this).children('.drop').fadeOut(50);
		}
		
	);
	
	$("a[rel='lookInsideTopNav']").colorbox({transition:"elastic"});
	$("a[rel='lookInsideWidget']").colorbox({transition:"elastic"});
	$("a[rel='lookInsideWidgetCover']").colorbox({transition:"elastic"});
	$("a[rel='lookInsideFooter']").colorbox({transition:"elastic"});
	$("a[rel='lookInsideFooterLP']").colorbox({transition:"elastic"});
	$("a[rel='lookInsideMainContent']").colorbox({transition:"elastic"});	
	
	
	
	
	
	
});

