/** home javascript file**/
$(document).ready(function(){

	 $("#gallery").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);

     $('.dvr_show_box > ul > li').mousemove(function(){

         $('a', this).css('color', '#666666');

		 $(this).css('borderColor', '#1B2D5D');

		 $('.link_button > img', this).attr('src', 'catalog/view/theme/blue/images/button/buy_now1.gif');

     }).mouseout(function(){

        $(this).css('borderColor', '#949FBD');

        $('a', this).css('color', '#006699');

		$('.link_button > img', this).attr('src', 'catalog/view/theme/blue/images/button/buy_now2.gif');
     });
});