/* Coast Accommodation Javascripts and jQuery Listing Created by WebStuff.biz - Last edited : 11/01/2012 */ $(document).ready(function () { /** Feature and Property Listing Slider **/ $('.accommtheme a').css({ "opacity" : 0 }); $('.accommtheme').hover(function() { $(this).children('.uno').stop().animate({ "left" : "190px" , "opacity" : .1 }, 600); }, function() { $(this).children('.uno').stop().animate({ "left" : "2px" , "opacity" : 1 }, 400); }); $("#login_submit").click(function(){ $('#login_frm').submit(); }); /** Outbound Link tracking **/ $('.outbound').click(function(){ $.get( '/out.php', { id : $(this).attr('id'), t : $(this).attr('type') }, function($data){ return true; } ); }); }); /** Popup Opener **/ function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); }