/*
 * jQuery helpers
 * 
 * */

$(document).ready(function(){
	
	/*
	 * Modify every second row
	 * */
	$('.sTable1 tr:odd td').css({'background-color' : '#ccc'});
	
	
	/*
	 * Modify every second thumbnail
	 * */
	$('.w300 .tn:odd').css({'margin-right' : '0'});
	$('.tn:last').css({'margin-right' : '0'});
	
	
	/***
	Simple jQuery Show|Hide script
	***/
	
	$('.infoBox .title a').click(function(){
		
		$('.infoBox .box').hide();
		$('.infoBox .title').addClass('dark');
		$('.infoBox .active').removeClass('active');
		
		$(this).parent().addClass('active');
		$(this).parent().removeClass('dark');
		$('#' + $(this).attr("rel")).show();
		
	});
	
	
	/***
	Show|Hide Payment Boxes
	***/
	$('.p_box').hide();
	$('.' + $('.showhide2:checked').attr("id")).show();
	
	$('.showhide2').focus(function(){
		
		$('.p_box').hide();
		$('.' + $(this).attr("id")).show();
		
	});
	
	
	
	/***
	Show|Hide admin categories
	***/
	
	$('.showhide3').click(function(){
		$('.' + $(this).attr("id")).toggle();
		
	});
	
	
});
