﻿/* 滑到最上面 */
$('.nav_to_top').click(function() {
    var $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
    $body.animate({
        scrollTop: 0
    },
    600);

    return false;
});
/* end of 滑到最上面 */

/* superfish menu */
$(document).ready(function(){ 
	$("ul.sf-menu").superfish(); 
	$("ul.sf-menu li ul li:last-child a").css({border:"none"});
	
	/* 加寬以修正最後一個粉絲團文字過多、又不能折行的問題 */
	$("ul.sf-menu li:last-child ul").css({width:"160px",left:"-29px"});
	
	/* 修正粉絲團問題 */
	if($('.body_index')){
		$(".grid_fb iframe").contents().find('.fan_box .page_stream').css({height:"105px",backgroundColor:"#000"});
	}
	
	var notInFrame = true;
	try {
	    notInFrame = !window.frameElement;
		if (document.documentElement.doScroll && notInFrame ) (function(){
			alert("rmk");
		});
	} catch(ex) {
	    notInFrame = false;
	} 
	
}); 
/* end of superfish menu */

