/**
 * Global JS file
 * @author Richard Hallows
 */

/**
 * Javascript CSS namespace
 */
var $j = jQuery.noConflict();
$j('html').addClass('js');

/**
 * Outside of jQuery on Dom ready
 */

	swfobject.embedSWF("/wp-content/themes/cnn-traveller/images/home.swf", "hero", "634", "325", "9.0.0")


/**
 * jQuery on Dom ready functionality
 */
jQuery(function($) {	

	// init
	
		// Columnizer
		//$('body.features.single .entry-content').columnize({ columns: 2 });
		
		//$('body').attr("id", "single");
		//$.gridOverlay('/wp-content/themes/cnn-traveller/images/resources/', {
		//	gridPos: "center top"
		//});
	
	// events
	
		// print
		$('.print').click(function() {
			window.print();
		});

});