$(document).ready(function() {
	
	var colorbox_width  = '770px';
	var colorbox_height = '580px';
	
	// init main navigaion
	$('ul.sf-menu').superfish({ 
    	
		autoArrows  :  false,
		dropShadows :  true
		 
    });
	
	// all external links get new window icon
	$("a[href^='https:'], a[href^='http:']").not("[href*='cherrymash.com']").not("[href*='aquariumdigital.com']").not("[href*='aquariumpreview.com']").not("[href*='aqdev.com']").not("[href*='addthis.com']").not("[href*='store.']").not("[href*='facebook.com']").not("[href*='twitter.com']").not("[href*='youtube.com']").after('<img src="/assets/img/external-link.gif" width="14" alt="external link" class="no-border no-space"/>');  
	
	// all external links open in a new window
	$("a[href^='https:'], a[href^='http:']").not("[href*='cherrymash.com']").not("[href*='store.']").attr('target','_blank');
	
	// all pdf docs open in a new window
	$("a[href*='.pdf']").attr('target','_blank').attr('rel','Download this PDF');
	
	// Removes last underline on interior sidebar items
	$("#sideNav li a:last").css({backgroundImage: 'none'});
	
	// Removes first divider on main nav
	$("nav ul li:first").css({backgroundImage: 'none'})
	
	// default infobox for cm.com (forms)
	$("a.infobox").colorbox({
		
		iframe : true,
		width  : colorbox_width,
		height : colorbox_height

	});
	
	// default colorbox for cm.com
	$('a.colorbox').colorbox({});
	
	// close/cancel the colorbox window
	$('a.close').click(function() { parent.$.fn.colorbox.close(); return false; });
	
	// Activates WYSIWYG editor on blog
	//$('#quip-comment-box-qcom').wysiwyg({resizeOptions: {}});
	
});


// -- end DOM ready events -- //

		
		
























