/**
	NAPSTER 2011 - Consumer Site Javascript 
	Q: Martin Möller
 */

/* JQUERY Plugins */

jQuery.easing.easeOutQuart = function (x, t, b, c, d) {	return -c * ((t=t/d-1)*t*t*t - 1) + b; }
jQuery.easing.easeOutSine = function (x, t, b, c, d) {	return c * Math.sin(t/d * (Math.PI/2)) + b; }
/**
 * jQuery[a] - Animated scrolling of series
 * Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/20/2008
 * @author Ariel Flesler
 * @version 1.2.1
 *
 * http://flesler.blogspot.com/2008/02/jqueryserialscroll.html
 */
;(function($){var a='serialScroll',b='.'+a,c='bind',C=$[a]=function(b){$.scrollTo.window()[a](b)};C.defaults={duration:1e3,axis:'x',event:'click',start:0,step:1,lock:1,cycle:1,constant:1};$.fn[a]=function(y){y=$.extend({},C.defaults,y);var z=y.event,A=y.step,B=y.lazy;return this.each(function(){var j=y.target?this:document,k=$(y.target||this,j),l=k[0],m=y.items,o=y.start,p=y.interval,q=y.navigation,r;if(!B)m=w();if(y.force)t({},o);$(y.prev||[],j)[c](z,-A,s);$(y.next||[],j)[c](z,A,s);if(!l.ssbound)k[c]('prev'+b,-A,s)[c]('next'+b,A,s)[c]('goto'+b,t);if(p)k[c]('start'+b,function(e){if(!p){v();p=1;u()}})[c]('stop'+b,function(){v();p=0});k[c]('notify'+b,function(e,a){var i=x(a);if(i>-1)o=i});l.ssbound=1;if(y.jump)(B?k:w())[c](z,function(e){t(e,x(e.target))});if(q)q=$(q,j)[c](z,function(e){e.data=Math.round(w().length/q.length)*q.index(this);t(e,this)});function s(e){e.data+=o;t(e,this)};function t(e,a){if(!isNaN(a)){e.data=a;a=l}var c=e.data,n,d=e.type,f=y.exclude?w().slice(0,-y.exclude):w(),g=f.length,h=f[c],i=y.duration;if(d)e.preventDefault();if(p){v();r=setTimeout(u,y.interval)}if(!h){n=c<0?0:n=g-1;if(o!=n)c=n;else if(!y.cycle)return;else c=g-n-1;h=f[c]}if(!h||d&&o==c||y.lock&&k.is(':animated')||d&&y.onBefore&&y.onBefore.call(a,e,h,k,w(),c)===!1)return;if(y.stop)k.queue('fx',[]).stop();if(y.constant)i=Math.abs(i/A*(o-c));k.scrollTo(h,i,y).trigger('notify'+b,[c])};function u(){k.trigger('next'+b)};function v(){clearTimeout(r)};function w(){return $(m,l)};function x(a){if(!isNaN(a))return a;var b=w(),i;while((i=b.index(a))==-1&&a!=l)a=a.parentNode;return i}})}})(jQuery);
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);

/**
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
*/
jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;}
var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}
expires='; expires='+date.toUTCString();}
var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}
return cookieValue;}};

/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);
 

/* Modernizr 2.0.6 (Custom Build) | MIT & BSD
 * Build: http://www.modernizr.com/download/#-canvas-addtest-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes
 * Canvas Test Only! window.Modernizr.canvas
 */
;window.Modernizr=function(a,b,c){function C(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1),d=(a+" "+n.join(c+" ")+c).split(" ");return B(d,b)}function B(a,b){for(var d in a)if(j[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function A(a,b){return!!~(""+a).indexOf(b)}function z(a,b){return typeof a===b}function y(a,b){return x(m.join(a+";")+(b||""))}function x(a){j.cssText=a}var d="2.0.6",e={},f=b.documentElement,g=b.head||b.getElementsByTagName("head")[0],h="modernizr",i=b.createElement(h),j=i.style,k,l=Object.prototype.toString,m=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),n="Webkit Moz O ms Khtml".split(" "),o={},p={},q={},r=[],s=function(a,c,d,e){var g,i,j,k=b.createElement("div");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),k.appendChild(j);g=["&shy;","<style>",a,"</style>"].join(""),k.id=h,k.innerHTML+=g,f.appendChild(k),i=c(k,a),k.parentNode.removeChild(k);return!!i},t=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=z(e[d],"function"),z(e[d],c)||(e[d]=c),e.removeAttribute(d))),e=null;return f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),u,v={}.hasOwnProperty,w;!z(v,c)&&!z(v.call,c)?w=function(a,b){return v.call(a,b)}:w=function(a,b){return b in a&&z(a.constructor.prototype[b],c)},o.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")};for(var D in o)w(o,D)&&(u=D.toLowerCase(),e[u]=o[D](),r.push((e[u]?"":"no-")+u));e.addTest=function(a,b){if(typeof a=="object")for(var d in a)w(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return;b=typeof b=="boolean"?b:!!b(),f.className+=" "+(b?"":"no-")+a,e[a]=b}return e},x(""),i=k=null,e._version=d,e._prefixes=m,e._domPrefixes=n,e.hasEvent=t,e.testProp=function(a){return B([a])},e.testAllProps=C,e.testStyles=s;return e}(this,this.document);



  $(document).ready(function(){

	/* Check for Affiliate Links set Cookie and attach Values to Registration Paths*/
	/*
		DomainCheck
	*/
	var ckDomain = document.domain;	
	if(document.domain=="www.napster.de") {ckDomain ="napster.de"}
	if(document.domain=="napster.de") {ckDomain ="napster.de"}
	if(document.domain=="www.napster.co.uk") {ckDomain ="napster.co.uk"}
	if(document.domain=="napster.co.uk") {ckDomain ="napster.co.uk"}
	
	/*
		Cookie Setting / Affiliate		
	*/			
		function setCheckCookie() {

			//SEO Pages Addition is affiliate_id=126&referral_id=SEO
			if ($('body.musik').length) { $.cookie('NQ', 'affiliate_id=192&referral_id=SEO', { expires: 30, path: '/', domain: ckDomain }); };
			
			if (location.search) {
				var searchstring = "";
					if(location.search.indexOf("?")==0) {
						searchstring = location.search.substr(1,location.search.length);
					}else{ 
						searchstring = location.search; 
					}
					if(searchstring.indexOf("faq")!=0) {
						$.cookie('NQ', ''+searchstring+'', { expires: 30, path: '/', domain: ckDomain });	
					}
			}
			
			refCookieVal = $.cookie('NQ');
			
			if(refCookieVal && typeof(disallowCookie) == 'undefined'){	
					$('[href]').each(function(){
						url = $(this).attr("href");	
						if(url.match("registrierung") || url.match("registration")) {					
							if($(this).attr("href").indexOf("?")==-1) {
								$(this).attr("href", url+'?'+refCookieVal);
							}else {
								$(this).attr("href", url+'&'+refCookieVal);
							}
						}		
					});
			}
		}
	//Heres the Cookie Check Init
	setCheckCookie();

	/* 
		Our Rss Feed Reader 
		
		It ultilizes the neat Google Feed Object to bypass
		the javascript sandbox so its usable on Dev and everywhere else
		as well.
		
		Also has a check for not available Album Covers
		and shows the Napster default instead.	
	*/

		/*
			Default IMG Check
		*/
		function checkFeedImgExistsNo404() {
			
			$("a.albumimg img").each(function(i, val){
				
				$(val).error(function() {
				  $(val).attr("src","http://home.gb.napster.com/images/player/bg_default_album_art.gif");
				});			
			});		
		}
		
		/*
			Gets the Feed Data Object by Google Feed Api and renders the Data 
			according to our needs further below defined.
		*/
		function getFeed(type, target, amount) {
			
			 // Type of Feed
			  switch (type) {
				case "popularity": 		
					var feedobj = new google.feeds.Feed("http://www.napster.de/feeds/rss/1.0/track/popularity/all");
				break;
			 
				case "newreleases": 
					 var feedobj = new google.feeds.Feed("http://www.napster.de/feeds/rss/1.0/album/newreleases/all");
				break;
			 
				case "recommendations": 
					 var feedobj = new google.feeds.Feed("http://www.napster.de/feeds/rss/1.0/album/recommendations/all");
				break;
			  }
			
			/* Google Feed Obj Settings */

			feedobj.setResultFormat(google.feeds.Feed.XML_FORMAT);
			feedobj.setNumEntries(amount);
			
			feedobj.load(function(result) {	
				if (!result.error) {					
					var items = result.xmlDocument.getElementsByTagName("item");
					
					if(target=='albumcover'){

						for (var i = 0; i < items.length; i++) {
					
							if(items[i].getElementsByTagName("nweb:track_name")[0] || items[i].getElementsByTagName("nweb:album_name")[0]){
								var titleElement = items[i].getElementsByTagName("nweb:track_name")[0];
								if(!titleElement) var titleElement = items[i].getElementsByTagName("nweb:album_name")[0];
							}
							else{
								var titleElement = items[i].getElementsByTagName("track_name")[0];
								if(!titleElement) var titleElement = items[i].getElementsByTagName("album_name")[0];
							}
							var title = titleElement.firstChild.nodeValue;

							if(items[i].getElementsByTagName("nweb:image_003")[0]){
								var img003Element = items[i].getElementsByTagName("nweb:image_003")[0];
							}
							else var img003Element = items[i].getElementsByTagName("image_003")[0];
							if(img003Element.firstChild) {						
								var img003 = img003Element.firstChild.nodeValue;
							} else {
								var img003 = "http://home.gb.napster.com/images/player/bg_default_album_art.gif";
							}

							if(items[i].getElementsByTagName("nweb:artist_name")[0]){
								var artistnameElement = items[i].getElementsByTagName("nweb:artist_name")[0];
							}
							else var artistnameElement = items[i].getElementsByTagName("artist_name")[0];
							var artistname = artistnameElement.firstChild.nodeValue;

							$("div.mu-cd"+i+"").html('<img class="cover" src="'+img003+'" alt="'+title+' - '+artistname+'" />');
													
						}

					}else{

						var htmlTxt = '<ul>';
						for (var i = 0; i < items.length; i++) {

							if(items[i].getElementsByTagName("nweb:track_name")[0] || items[i].getElementsByTagName("nweb:album_name")[0]){
								var titleElement = items[i].getElementsByTagName("nweb:track_name")[0];
								if(!titleElement) var titleElement = items[i].getElementsByTagName("nweb:album_name")[0];
							}
							else{
								var titleElement = items[i].getElementsByTagName("track_name")[0];
								if(!titleElement) var titleElement = items[i].getElementsByTagName("album_name")[0];
							}
							var title = titleElement.firstChild.nodeValue;

							if(items[i].getElementsByTagName("nweb:image_003")[0]){
								var img003Element = items[i].getElementsByTagName("nweb:image_003")[0];
							}
							else var img003Element = items[i].getElementsByTagName("image_003")[0];
							if(img003Element.firstChild) {						
								var img003 = img003Element.firstChild.nodeValue;
							} else {
								var img003 = "http://home.gb.napster.com/images/player/bg_default_album_art.gif";
							}

							if(items[i].getElementsByTagName("nweb:artist_name")[0]){
								var artistnameElement = items[i].getElementsByTagName("nweb:artist_name")[0];
							}
							else var artistnameElement = items[i].getElementsByTagName("artist_name")[0];
							var artistname = artistnameElement.firstChild.nodeValue;
								
							// Render HTML 											
							htmlTxt += '<li>';
							htmlTxt += '<a class="albumimg" href="/musik-hoeren/index.html" rel="registration_modul2"><img width="140" height="139" src="'+img003+'" alt=""/></a>';
							htmlTxt += '<div class="info">';
							htmlTxt += '<a href="/musik-hoeren/index.html" rel="registration_modul2"><em class="albumname">'+title+'</em></a>';
							htmlTxt += '<div class="clear"></div>';
							htmlTxt += '<a href="/musik-hoeren/index.html" rel="registration_modul2"><em class="artistname">'+artistname+'</em></a>';
							htmlTxt += '</div>';
							htmlTxt += '</li>';	
						}
						htmlTxt += '</ul>';						
						$(target).html(htmlTxt);
						checkFeedImgExistsNo404();
					}
					
					return true;
				}				 
			 });
		}
	/*
		Checks for our Feed Data Lists and initiates the display according to our
		needs defined. 
	*/
	if ($('div#top5RssList').length) getFeed("popularity", "div#top5RssList", 5);
	if ($('div#newReleasesRssList').length) getFeed("newreleases", "div#newReleasesRssList", 5);
	if ($("div#recommendationsRssList").length) getFeed("recommendations", "div#recommendationsRssList", 5);		
	if($('div.music-unlimited-display').length) getFeed("newreleases", "albumcover", 3);


	/* WINTER SPECIAL */

	if(window.Modernizr.canvas) {	}


		
	/* 
		MISC Stuff Helpers 
		##############################################################################################
	*/
	
	 /* Home Site Devices Animation */

	 $("div.header-device-image").delay(1200).fadeIn("slow");

	 /* Mobile Site Screens Scrolldown */

	 var mobileScreens = $("div.mobile-screens .hover");
	
	 $(mobileScreens).hoverIntent(function(){				
			$(this).css('position','absolute');	
						
			$(this).stop(true,true).animate({ height: 431 },{queue:false, duration:350, complete: function(){}, easing: 'easeOutQuart'}); 	
			
			if($(this).find(".img6correction").length) { $(".img6correction").hide(); }
	 }, 
		function() {
		 $(this).stop(true,true).animate({ height: 256 },{queue:false, duration:250, complete: function(){ 
		
			 $(this).css({'position':'relative'}); 			

			 if($(this).find(".img6correction").length) { $(".img6correction").show(); }

			}, easing: 'easeOutQuart'}); 		
	 });


	/* 
		Mobile Site Screens Scrolldown
	*/	
	var iconApple = $(".icon-apple");	
	var iconAndroid = $(".icon-android");
	var slidingMobileBackground = $("div.mobile-screens-lastrow .img8");
	var backgroundImg = slidingMobileBackground.css("backgroundPosition");	
	var positionName = (backgroundImg===undefined) ? "backgroundPositionX" : "backgroundPosition";

	$(iconApple).mouseover(function(){	if(positionName=="backgroundPositionX"){ $(slidingMobileBackground).animate({ backgroundPositionX : '-300' },{queue:false, duration:750, complete: function(){}, easing: 'easeOutQuart'}); 			}else{ 				$(slidingMobileBackground).animate({ backgroundPosition : '-300' },{queue:false, duration:750, complete: function(){}, easing: 'easeOutQuart'}); } 				 }); 
	$(iconAndroid).mouseover(function(){ if(positionName=="backgroundPositionX"){ $(slidingMobileBackground).animate({ backgroundPositionX : '0' },{queue:false, duration:750, complete: function(){}, easing: 'easeOutQuart'}); 			}else{	$(slidingMobileBackground).animate({ backgroundPosition : '0' },{queue:false, duration:750, complete: function(){}, easing: 'easeOutQuart'}); } 				 });
	
	/*
		What is Napster Page Bubbles on Mouseover
	*/
	var bubbleImages = $("div.feature-bubbles .bubble");

	$(bubbleImages).hoverIntent(function(){
			var height = -40;
			if($(this).hasClass("img3")) height = -80;
			$(this).find(".bubbletext").show().animate({ top:height,'opacity': 1},{queue:false, duration:250, complete: function(){  }, easing: 'easeOutQuart'}); 	
	 }, 
		function() {			
			$(this).find(".bubbletext").animate({ top:20,'opacity': 0},{queue:false, duration:250, complete: function(){ $(this).hide(); }, easing: 'easeOutQuart'}); 			
	 });	
		
	/* White Black Font on Hover - Cufon needs this */
	if($("ul.cinfo-nav li a")) {
				
		$('ul.cinfo-nav li a').hover(function(){},function(){	});	}
	
	$("div.chooseProduct a").click(function(e) {
		e.preventDefault();

		$("ul.productInfoList").hide();
		$("ul.productInfoList li").hide();
		
		var i=0;
		$("div.chooseProduct a").removeClass("btnactive");
		$(this).addClass("btnactive");
			
			if($(this).hasClass("ntg")) {
				$("ul.ntg").show();
				$("ul.ntg li").each(function(){
					$(this).delay(++i*200).fadeIn('slow');			
				});
			}else if($(this).hasClass("light")) {
				$("ul.light").show();
				$("ul.light li").each(function(){
					$(this).delay(++i*200).fadeIn('slow');			
				});			
			}else if($(this).hasClass("flatrate")) {
				$("ul.flatrate").show();
				$("ul.flatrate li").each(function(){
					$(this).delay(++i*200).fadeIn('slow');			
				});
			}
	});	
	
	/* Press Release Mini Fix for List set Last-Col to no BG Image - IE6 fix */
	$("ul.pressReleaseList li:last").addClass("nobg");

	/* Press Release Back Button Event */
	$("a.backButton").click(function(e) { e.preventDefault(); history.back(); });

	/* Basic FAQ */
	$("div.faq div.question h4").click(function() {
		
		$(this).next().stop().slideToggle(400);		
			//heres some Sitecatalyst tracking
			relName = $(this).attr("rel");
			if(relName) {			
				s.linkTrackVars='prop4,prop21';
				s.prop21=s.pageName;
				s.prop4=relName;
				s.tl(this,'o',s.pageName+'_'+relName);
			}		
	});

	/* FAQ Pages Slide Toggle */
	if( $("div.faq div.question").hasClass("active"))  {
		$('div.faq div.active h4').next().stop().slideToggle(400);
		$(window).scrollTo( $('div.faq div.active'),2400,{easing:'easeOutQuart'} );
	}

});

