jQuery(document).ready(function(){
    jQuery('div.productDetailTrigger').click(function(){
        var productDetail = jQuery('div#' + jQuery(this).attr('id') + 'Detail').html();
        Shadowbox.open({
            content: productDetail,
            player: 'html',
            width: 542,
            height: 561
        });
    });
    jQuery('table.productSpec tr:even th').css('background-color', '#ffffff');
    jQuery('table.productSpec tr:even td').css('background-color', '#ffffff');
	
});

$(function(){
    $('img.hover').hover(
		function(){jQuery(this).attr('src', this.src.replace('_off', '_on'));},
		function(){ jQuery(this).attr('src', this.src.replace('_on', '_off'));
    });
});

/*

spSupport

=====================================================================================*/

function UA(_str){
	var userAgent = window.navigator.userAgent.toLowerCase();
	if(userAgent.indexOf(_str) != -1){
		return true;
	}else{
		return false;
	}
}
function isSmartPhone(){
	if(UA("iphone") || UA("ipad") || UA("ipod") || UA("android")){
		return true;
	}else{
		return false;
	}
}

