$(document).ready(function() {

	$.fn.log = function (msg) {
		console.log("%s: %o", msg, this);
		return this;
	};

	$(".cb01").colorbox({width:"500px", inline:true, href:"#tip"});

	$('#selectList1').change(function(){ 
		window.location = jQuery(this).val(); 
	});

	$(".product").each(function(i){
		if (((i+1)/5 % 1) == 0) 
			$(this).after('<div class="clear"></div>');

		$(this).find('p a').attr('href', ($(this).find('.imgWrap1 a').attr('href')));
	});

	$('.product').children('.imgWrap1').children('a').hover
		(function(){
		  	$(this).parents('.imgWrap1').siblings('p').children('a').css({
				'text-decoration' : 'underline'
				});
		  },
		  function () {
		  	$(this).parents('.imgWrap1').siblings('p').children('a').css({
				'text-decoration' : 'none'
				});
		  }
	);

	if (typeof document.body.style.maxHeight != "undefined") {
  		// IE 7, mozilla, safari, opera 9
	} else {
  		$('.imgWrap1').each(function(){
			$(this).children('a').css('margin-top', ($(this).height()-$(this).children('a').height())/2 + 'px');			
		});
	}
});


