/**
 *	Description: Javascript Document
 *	Date: June 10, 2010
 *	By: Freeport Auto Sales
 */

// shorthand for $(document).ready() BTW

	$(function(){	
  	
		// For Car Images
		$('.popularCar a').lightBox();

	    	// For Car Detail Modal View
		$(".example7").colorbox({width:"80%", height:"80%", iframe:true});

		// For table sorting
		$("table") 
		.tablesorter({widthFixed: true, widgets: ['zebra'], headers: {5:{sorter: false}} }) 
		.tablesorterPager({container: $("#pager")}); 

		// *****************************
		// Code not used any more below:
		//$("#myTable").tablesorter(); 
		//$("#myTable").tablesorter({widthFixed: true, widgets: ['zebra']}).tablesorterPager({container: $("#pager")});
		//$("#myTable").tablesorter();
		// Rounded Corners
		//$(".carPic").corner();
		//$(".mainContent").corner("round bottom");  
		//$(".carRounded").corner();
		// Lightbox
		//$(".popularCar").lightBox(); 
		//$('.popularCar a').lightBox({fixedNavigation:true});
		//  Image Cycle on main page
		/*
		$('.pics') 
		.after('<div id="nav">') 
		.cycle({ 
		fx:     'zoom', 
		speed:  'slow', 
		timeout: 0, 
		pager:  '#nav' 
		});
		*/
		//$('.pics').cycle('shuffle'); // previous way to keep sliding
		// Initialize prettyPhoto
		//$("a[rel^='prettyPhoto']").prettyPhoto();
		// *****************************
	
	});
	
	


