var base_url='/index.php/';
jQuery(document).ready(function(){
    // external links open in a new window
    //jQuery("a:not([href*=http://sfcinema/])").not("[href^=#]").click(function(ev){
    //jQuery("a:not([href*=http://www.sfcinemacity.co.th/])").not("[href^=#]").click(function(ev){
    //jQuery("a:not([href*=http://203.147.10.244/])").not("[href^=#]").click(function(ev){
	//window.open(jQuery(this).attr('href'));
	//return false;
    //});
    jQuery("a.external").click(function(ev){
	window.open(jQuery(this).attr('href'));
	return false;
    });
    
    
    // bind show and hide of navigation menu when hovering
    jQuery("#navigation li").bind('mouseenter', function(){
	jQuery(this).children('ul').fadeIn();
    })
    .bind('mouseleave', function(){
	jQuery(this).children('ul').fadeOut();
    });
    
    
});
