﻿/**
 * Simple rollover
 * 
 * Copyright (c) 2009 Kyosuke Nakamura (kyosuke.jp)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

$(function(){
	$('.roll').each(function(){
		this.originalSrc = $(this).attr('src');
		this.rolloverSrc = this.originalSrc.replace(/(\.gif|\.jpg|\.png)$/, '_on'+"$1");
		this.rolloverImg = new Image();
		this.rolloverImg.src = this.rolloverSrc;
	}).hover(function(){
		$(this).attr('src',this.rolloverSrc);
	},function(){
		$(this).attr('src',this.originalSrc);
	});
});

// $(document).ready(function(){
// //$("#gNavi").before('<p style="position:absolute;top:85px;left:300px; z-index:1; color: #d080cc; font-weight: bold">バレンタインキャンペーン実施中！今ならギフト包装が無料です。</p>');
// if($.browser.msie && ($.browser.version < 7.0 || !$.boxModel)){
// //    IE6 向けの処理
// 
// $('div:last-child').append('<div id="float-campaign"><a id="float-campaign-tab" href="campaign200912.html"></a></div>');
//     $('#float-campaign-tab').css({
//         'width':'30px',
//         'height':'300px',
//         'position':'fixed',
//         'top':'55px',
//         'right':'1153px',
//         'bottom':'184.25px',
//         'left':'0px',
//         'display':'block',
//         'background-image':'url(images/campaign-1_03_03.png)',
//         'background-color':'#f71404'
//     });
//     $('#float-campaign').hover(function(){
//             $('#float-campaign-tab').css({'background-color':'#f75348'});
//         }, function(){
//             $('#float-campaign-tab').css({'background-color':'#f71404'});
//         });
// 
// }else{
//     $("head").append('<link rel="stylesheet" href="thickbox.css" type="text/css" media="screen" />');
//     
//     $('#container:first-child').prepend('<div id="float-campaign"><a id="float-campaign-tab" href="campaign200912.html?KeepThis=true&TB_iframe=true&height=600&width=680" title="スリープトラッカー春の感謝キャンペーン" class="thickbox"></a></div>');
//     $('#float-campaign-tab').css({
//         'width':'26px',
//         'height':'310px',
//         'position':'fixed',
//         'top':'55px',
//         'right':'1153px',
//         'bottom':'184.25px',
//         'left':'0px',
//         'display':'block',
//         'background-image':'url(images/campaign_03.png)',
//         'background-color':'#f71404',
//         'z-index':'2'
//     });
//     $('#float-campaign').hover(function(){
//             $('#float-campaign-tab').css({'background-color':'#f75348'});
//         }, function(){
//             $('#float-campaign-tab').css({'background-color':'#f71404'});
//         });
//         
// }
// 
// });
// 
// $(function(){
//         $('#float-campaign-tab').exFixed(); // for IE6
// });

