                $(document).ready(function(){
$(window).bind('load', function() {
$('img').bind('load', function() {
		//$("li:eq(0),li:eq(4),dl:eq(8)",".categoryList").css({marginLeft:"0px", clear:"left"});
	
		$('.prodImg img').each 
		(function(i){
			var ah = $('.prodImg img').eq(i).height();
			var ph = $('.prodImg img').eq(i).parent().height();
			var mh = (ph - ah) / 2;
			$('.prodImg img').eq(i).css('margin-top', mh);
		});

               $('.prodImage img').each (function(i){
                var ah = $('.prodImage img').eq(i).height();
                var ph = $('.prodImage img').eq(i).parent().height();
                var mh = (ph - ah) / 2;
                $('.prodImage img').eq(i).css('margin-top', mh);
            });
	
	});

	function clearIt(t)
	{
		if (t.defaultValue==t.value) t.value = '';
	}
    }).trigger('load');
});

    

    