jQuery(document).ready(function(){
jQuery('#viewBasket').click(function () {
jQuery('#dvContent').slideToggle(500);
});
jQuery('.categories > li').each(function (i) {
jQuery(this).find('h5:last').css({'border-bottom':'none'});
});

jQuery('.row').each(function(){
h4_height = 0;
jQuery(this).find('h4').each(function(){
if (jQuery(this).height() > h4_height){
h4_height = jQuery(this).height();
}
})
jQuery(this).find('h4').css({'height':h4_height+'px'})
})
jQuery(window).load(function () {
jQuery(".productCell").each(function(){
height_box = jQuery(this).height();
height_box = height_box-16;
jQuery(this).find(".productCellBottomBg").css({'height':height_box+'px'})
})
});

})
