// JavaScript Document

$(document).ready(function () { 
							

							
        $('select[name="product_list"]').change(function () { 
               
			   var area=this.value
			   
			   if (this.value) { 
                    $('.prods > div').hide(); //hide all other divs
					$('.prods').show('fast'); //show the main container div
					$('#'+area).show('slow'); //show targeted div
                } 
        }); 
		
		// shipping drop downs
		 $('select[name="shipping_method"]').change(function () { 
               
				var area=this.value
			  	var sm_id=this.id //_v,_h,_h250,_j
				$('.shipping_method_options').show();
			  
			   if (this.value) { //show selected shipping methods in the shipping method options div
			   		 //hide all other divs
					//$('.ship_cont_j > div').hide(); //hide all other divs
					//$('.ship_cont_h > div').hide(); //hide all other divs
					//$('.ship_cont_h250 > div').hide(); //hide all other divs
                   	//$('.ship_cont'+sm_id+' > div').hide(); //hide all other divs
					//$('.ship_cont'+sm_id+' > .'+area).show('slow'); //show targeted div
               // } 
        }
		// en shipping drop downs
							});
		
});
