$(document).ready(function() {
	// for IE... 
	if (!window.console) console = {};
	console.log = console.log || function(){};
	// and add trace option...
	if (!window.trace) trace = function(val){console.log(val)};
	
	$('.content_left_nav ul li ul li').last().css('border', 'none');
	$('.shortcut_cube:first').css('margin-top','60px');
	$('.shortcut_cube a span').each(function(index) {
		var txt = ($(this).html()).toLowerCase();
		if((txt.indexOf("<br>") == -1)){
			$(this).css('line-height', '40px');
		}
	});
	$('.shortcut_cube2:even').css('margin-left','100px');
	$('.shortcut_cube2 a span').each(function(index) {
		var txt = ($(this).html()).toLowerCase();
		if((txt.indexOf("<br>") == -1)){
			$(this).css('line-height', '40px');
		}
	});
	if($('.image')){ // only for product page
		$($('.image').find("a")).click(function() {
			$(this).blur();
			$.fancybox({
				'href': ($($(this).parent()).find("span").html())
			});
			return false;
		});
	}
	$(".content_main .desc_inner a.product:even").css("margin-right", "10px");
});

