jQuery.noConflict();
jQuery(document).ready(function($){

/*
 * Function to generate "viewport" for handeld devices
 */
//<![CDATA[

	function mobileViewport(){
	    if(((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/Android/))||(navigator.userAgent.match(/webOS/)))){
			$("#header").css({
			   "padding-bottom": "0"
			});
			$("#banner").css({
			   "display": "none"
			});
	    } 
	}
	$(function(){ mobileViewport(); });

//]]>

});
