// JavaScript Document
$(document).ready(function(){
	$(".stripped tr:odd").addClass("strippedRow");
	
	$(".box1").hover(function(){
	   $(this).addClass("box1-hover");
	 },function(){
	   $(this).removeClass("box1-hover");
	 });
	 
	/*Togglovani billing adresy****************************************************/	
	$(".toggle_billing_address").live('change click',function () {//togglování billing adresy 
		if ($(".toggle_billing_address").is(":checked")) 
			{$("#system_billing_address").show();}
   		else
   			{$("#system_billing_address").hide();}
	});
	$(".toggle_billing_address").trigger('change'); 
});
