/**
 * Pratima Skincare
 *
 * @author     Brendan Falkowski (http://gravitydept.com)
 * @package    base_pratima
 * @copyright  Copyright 2011 Pratima Skincare (http://pratimaskincare.com)
 * @license    All rights reserved.
 * @version    1.0.0
 */


/* avoid PrototypeJS conflicts, assign jQuery to $jQ instead of $ */
var $jQ = jQuery.noConflict();

/* using $jQ(document).ready() because Magento executes Prototype inline and freaks out if jQuery executes beforehand */
/* using function($) to maintain normal jQuery syntax inside */
$jQ(document).ready(function($){

	// -----------------------------------------
	// Progressive enhancement hook
	// -----------------------------------------
		
	//$('body').addClass('js');
	
	
	// -----------------------------------------
	// ColorBox		
	// -----------------------------------------
		
	if ($().colorbox) {
		
		/*
		// SELECTOR: .press-list .cover
		// FOR: pratimaskincare.com/in-the-press/
		
		// SELECTOR: .press-popup
		// FOR: catalog/product/view template
		*/
		
		$(".press-list .cover, .press-popup").colorbox({
			'height': '95%',
			'initialWidth': '200px',
			'initialHeight': '200px',
			'innerWidth': '875px',
			'opacity': 0.75,
			'speed': 300
		});
	}
	
	// -----------------------------------------
	// ColorBox		
	// -----------------------------------------
	
	if ($().slides) {
	
		$(".slides").slides({
			container: 'slides-container',
			play: 6000,
			pause: 6000,
			slideSpeed: 500
		});
	}
	

// end $jQ
});

