// JavaScript Document

;(function($){
	$(function(){
		
		// Check for sub-navs, if got then prevent its click feature
		$('ul#menu-top-nav > li').each(function(i){
			if( $(this).find('ul').length ){
				// Okay, sub-menu item found, go for click prevention
				$(this).find('a:first').click(function(e){e.preventDefault()})
			}
			
			if( $(this).find('a:first').find('br').length ){
				$(this).find('a:first').addClass('doubleLine')
			}
		})

	}) // Ending Document Ready
})(jQuery) // jQuery Scheild
