
function fnShowBrands(){
 var targetBrandsValue = $('targetBrands').value;
 if(targetBrandsValue==0){
   //document.getElementById('showBrandsId').style.display='block';
    $s("#showBrandsId").slideDown("slow");     
   document.getElementById('targetBrands').value=1;
 }else{
   //document.getElementById('showBrandsId').style.display='none';
    $s("#showBrandsId").slideUp('slow');	     
   $('targetBrands').value=0;
 }
}
function fnDeleteBuyNowItems(id){
	var form=document.getElementById("shoppingcarts");
	document.getElementById('smallCartDoActionId').value="deleteFormCart";
	if(id!=null){
		document.getElementById('smallCartId').value=id;
	}
	 document.getElementById('smallCartItemTypeId').value="buyNow";
	form.submit();
}

 
 $s(document).ready(function(){
    var objStr = "#smallShoppingcartId";
	$s(objStr).mouseover(function(){
	      $s("#miniCartPopId").show();
	});
	$s(objStr).mouseout(function(){
	   $s("#miniCartPopId").hide();
	 });
});