/*
	Scripts for EM2 Sports
	Copyright 2012 Fast Pivot
*/


// Tabbed Details
(function($){
	$.fn.tabbedDetails = function(){
        var tabContainers = $('div#tabbedDetails > div');
        tabContainers.hide().filter(':first').show();
        
        $('div#tabbedDetails ul.tabs a').click(function(){
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('div#tabbedDetails ul.tabs li').removeClass('selected');
			$(this).parent().addClass('selected');
			return false;
        }).filter(':first').click();
	}
})(jQuery);


jQuery(document).ready(function($) {
	
	// Launch Tabbed Details
	if ($("#tabbedDetails").length > 0){
		$().tabbedDetails();
	}


});
