Can anyone gimme a hand and help me figure out the IE issues

Discussion in 'HTML & Website Design' started by duanehaas, Jan 3, 2010.

  1. #1
    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
    Timestamp: Sun, 3 Jan 2010 17:42:19 UTC


    Message: 'jQuery' is undefined
    Line: 10
    Char: 1
    Code: 0
    URI: http://dailyfailblog.com/


    Message: 'defaultbuttons.enable' is null or not an object
    Line: 112
    Char: 3
    Code: 0
    URI: http://dailyfailblog.com/wp-content/themes/scarlett/js/scroll.js


    Those are the errors my site records when I open it in IE. The only things that I can see that actually mess up are the popular posts side widget and the background of my content section isn't the correct color.

    This is the scroll.js code

    //Step Carousel Viewer: By Dynamic Drive, at http://www.dynamicdrive.com
    //** Created: March 19th, 08'
    //** Aug 16th, 08'- Updated to v 1.4:
    	//1) Adds ability to set speed/duration of panel animation (in milliseconds)
    	//2) Adds persistence support, so the last viewed panel is recalled when viewer returns within same browser session
    	//3) Adds ability to specify whether panels should stop at the very last and first panel, or wrap around and start all over again
    	//4) Adds option to specify two navigational image links positioned to the left and right of the Carousel Viewer to move the panels back and forth
    
    //** Aug 27th, 08'- Nav buttons (if enabled) also repositions themselves now if window is resized
    
    //** Sept 23rd, 08'- Updated to v 1.6:
    	//1) Carousel now stops at the very last visible panel, instead of the last panel itself. In other words, no more white space at the end.
    	//2) Adds ability for Carousel to auto rotate dictated by the new parameter: autostep: {enable:true, moveby:1, pause:3000}
    	//2i) During Auto Rotate, Carousel pauses onMouseover, resumes onMouseout. Clicking Carousel halts auto rotate.
    
    //** Oct 22nd, 08'- Updated to v 1.6.1, which fixes functions stepBy() and stepTo() not stopping auto stepping of Carousel when called.
    
    var stepcarousel={
    	ajaxloadingmsg: '<div style="margin: 1em; font-weight: bold"><img src="ajaxloadr.gif" style="vertical-align: middle" /> Fetching Content. Please wait...</div>', //customize HTML to show while fetching Ajax content
    	defaultbuttonsfade: 0.4, //Fade degree for disabled nav buttons (0=completely transparent, 1=completely opaque)
    	configholder: {},
    
    	getCSSValue:function(val){ //Returns either 0 (if val contains 'auto') or val as an integer
    		return (val=="auto")? 0 : parseInt(val)
    	},
    
    	getremotepanels:function($, config){ //function to fetch external page containing the panel DIVs
    		config.$belt.html(this.ajaxloadingmsg)
    		$.ajax({
    			url: config.contenttype[1], //path to external content
    			async: true,
    			error:function(ajaxrequest){
    				config.$belt.html('Error fetching content.<br />Server Response: '+ajaxrequest.responseText)
    			},
    			success:function(content){
    				config.$belt.html(content)
    				config.$panels=config.$gallery.find('.'+config.panelclass)
    				stepcarousel.alignpanels($, config)
    			}
    		})
    	},
    
    	getoffset:function(what, offsettype){
    		return (what.offsetParent)? what[offsettype]+this.getoffset(what.offsetParent, offsettype) : what[offsettype]
    	},
    
    	getCookie:function(Name){ 
    		var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
    		if (document.cookie.match(re)) //if cookie found
    			return document.cookie.match(re)[0].split("=")[1] //return its value
    		return null
    	},
    
    	setCookie:function(name, value){
    		document.cookie = name+"="+value
    	},
    
    	fadebuttons:function(config, currentpanel){
    		config.$leftnavbutton.fadeTo('fast', currentpanel==0? this.defaultbuttonsfade : 1)
    		config.$rightnavbutton.fadeTo('fast', currentpanel==config.lastvisiblepanel? this.defaultbuttonsfade : 1)
    	},
    
    	addnavbuttons:function(config, currentpanel){
    		config.$leftnavbutton=jQuery('<img src="'+config.defaultbuttons.leftnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Back '+config.defaultbuttons.moveby+' panels'}).appendTo('body')
    		config.$rightnavbutton=jQuery('<img src="'+config.defaultbuttons.rightnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Forward '+config.defaultbuttons.moveby+' panels'}).appendTo('body')
    		config.$leftnavbutton.bind('click', function(){ //assign nav button event handlers
    			stepcarousel.stepBy(config.galleryid, -config.defaultbuttons.moveby)
    		})
    		config.$rightnavbutton.bind('click', function(){ //assign nav button event handlers
    			stepcarousel.stepBy(config.galleryid, config.defaultbuttons.moveby)
    		})
    		if (config.panelbehavior.wraparound==false){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
    			this.fadebuttons(config, currentpanel)
    		}
    		return config.$leftnavbutton.add(config.$rightnavbutton)
    	},
    
    	stopautostep:function(config){
    		clearTimeout(config.steptimer)
    		clearTimeout(config.resumeautostep)
    	},
    
    	alignpanels:function($, config){
    		var paneloffset=0
    		config.paneloffsets=[paneloffset] //array to store upper left offset of each panel (1st element=0)
    		config.panelwidths=[] //array to store widths of each panel
    		config.$panels.each(function(index){ //loop through panels
    			var $currentpanel=$(this)
    			$currentpanel.css({float: 'none', position: 'absolute', left: paneloffset+'px'}) //position panel
    			$currentpanel.bind('click', function(e){return config.onpanelclick(e.target)}) //bind onpanelclick() to onclick event
    			paneloffset+=stepcarousel.getCSSValue($currentpanel.css('marginRight')) + parseInt($currentpanel.get(0).offsetWidth || $currentpanel.css('width')) //calculate next panel offset
    			config.paneloffsets.push(paneloffset) //remember this offset
    			config.panelwidths.push(paneloffset-config.paneloffsets[config.paneloffsets.length-2]) //remember panel width
    		})
    		config.paneloffsets.pop() //delete last offset (redundant)
    		var addpanelwidths=0
    		var lastpanelindex=config.$panels.length-1
    		config.lastvisiblepanel=lastpanelindex
    		for (var i=config.$panels.length-1; i>=0; i--){
    			addpanelwidths+=(i==lastpanelindex? config.panelwidths[lastpanelindex] : config.paneloffsets[i+1]-config.paneloffsets[i])
    			if (config.gallerywidth>addpanelwidths){
    				config.lastvisiblepanel=i //calculate index of panel that when in 1st position reveals the very last panel all at once based on gallery width
    			}
    		}
    		config.$belt.css({width: paneloffset+'px'}) //Set Belt DIV to total panels' widths
    		config.currentpanel=(config.panelbehavior.persist)? parseInt(this.getCookie(window[config.galleryid+"persist"])) : 0 //determine 1st panel to show by default
    		config.currentpanel=(typeof config.currentpanel=="number" && config.currentpanel<config.$panels.length)? config.currentpanel : 0
    		if (config.currentpanel!=0){
    			var endpoint=config.paneloffsets[config.currentpanel]+(config.currentpanel==0? 0 : config.beltoffset)
    			config.$belt.css({left: -endpoint+'px'})
    		}
    		if (config.defaultbuttons.enable==true){ //if enable default back/forth nav buttons
    			var $navbuttons=this.addnavbuttons(config, config.currentpanel)
    			$(window).bind("load resize", function(){ //refresh position of nav buttons when page loads/resizes, in case offsets weren't available document.oncontentload
    				config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
    				config.$leftnavbutton.css({left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px'})
    				config.$rightnavbutton.css({left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px'})
    			})
    		}
    		if (config.autostep && config.autostep.enable){ //enable auto stepping of Carousel?		
    			var $carouselparts=config.$gallery.add(typeof $navbuttons!="undefined"? $navbuttons : null)
    			$carouselparts.bind('click', function(){
    				stepcarousel.stopautostep(config)
    				config.autostep.status="stopped"
    			})
    			$carouselparts.hover(function(){ //onMouseover
    				stepcarousel.stopautostep(config)
    				config.autostep.hoverstate="over"
    			}, function(){ //onMouseout
    				if (config.steptimer && config.autostep.hoverstate=="over" && config.autostep.status!="stopped"){
    					config.resumeautostep=setTimeout(function(){
    						stepcarousel.autorotate(config.galleryid)
    						config.autostep.hoverstate="out"
    					}, 500)
    				}
    			})
    			config.steptimer=setTimeout(function(){stepcarousel.autorotate(config.galleryid)}, config.autostep.pause) //automatically rotate Carousel Viewer
    		} //end enable auto stepping check
    		this.statusreport(config.galleryid)
    		config.oninit()
    		config.onslideaction(this)
    	},
    
    	stepTo:function(galleryid, pindex){ /*User entered pindex starts at 1 for intuitiveness. Internally pindex still starts at 0 */
    		var config=stepcarousel.configholder[galleryid]
    		if (typeof config=="undefined"){
    			alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
    			return
    		}
    		stepcarousel.stopautostep(config)
    		var pindex=Math.min(pindex-1, config.paneloffsets.length-1)
    		var endpoint=config.paneloffsets[pindex]+(pindex==0? 0 : config.beltoffset)
    		if (config.panelbehavior.wraparound==false && config.defaultbuttons.enable==true){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
    			this.fadebuttons(config, pindex)
    		}
    		config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
    		config.currentpanel=pindex
    		this.statusreport(galleryid)
    	},
    
    	stepBy:function(galleryid, steps){ //isauto if defined indicates stepBy() is being called automatically
    		var config=stepcarousel.configholder[galleryid]
    		if (typeof config=="undefined"){
    			alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
    			return
    		}
    		stepcarousel.stopautostep(config)
    		var direction=(steps>0)? 'forward' : 'back' //If "steps" is negative, that means backwards
    		var pindex=config.currentpanel+steps //index of panel to stop at
    		if (config.panelbehavior.wraparound==false){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
    			pindex=(direction=="back" && pindex<=0)? 0 : (direction=="forward")? Math.min(pindex, config.lastvisiblepanel) : pindex
    			if (config.defaultbuttons.enable==true){ //if default nav buttons are enabled, fade them in and out depending on if at start or end of carousel
    				stepcarousel.fadebuttons(config, pindex)
    			}	
    		}
    		else{ //else, for normal stepBy behavior
    			if (pindex>config.lastvisiblepanel && direction=="forward"){
    				//if destination pindex is greater than last visible panel, yet we're currently not at the end of the carousel yet
    				pindex=(config.currentpanel<config.lastvisiblepanel)? config.lastvisiblepanel : 0
    			}
    			else if (pindex<0 && direction=="back"){
    				//if destination pindex is less than 0, yet we're currently not at the beginning of the carousel yet
    				pindex=(config.currentpanel>0)? 0 : config.lastvisiblepanel /*wrap around left*/
    			}
    		}
    		var endpoint=config.paneloffsets[pindex]+(pindex==0? 0 : config.beltoffset) //left distance for Belt DIV to travel to
    		if (pindex==0 && direction=='forward' || config.currentpanel==0 && direction=='back' && config.panelbehavior.wraparound==true){ //decide whether to apply "push pull" effect
    			config.$belt.animate({left: -config.paneloffsets[config.currentpanel]-(direction=='forward'? 100 : -30)+'px'}, 'normal', function(){
    				config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
    			})
    		}
    		else
    			config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
    		config.currentpanel=pindex
    		this.statusreport(galleryid)
    	},
    
    	autorotate:function(galleryid){
    		var config=stepcarousel.configholder[galleryid]
    		if (config.$gallery.attr('_ismouseover')!="yes"){
    			this.stepBy(galleryid, config.autostep.moveby)
    		}
    		config.steptimer=setTimeout(function(){stepcarousel.autorotate(galleryid)}, config.autostep.pause)
    	},
    
    	statusreport:function(galleryid){
    		var config=stepcarousel.configholder[galleryid]
    		var startpoint=config.currentpanel //index of first visible panel 
    		var visiblewidth=0
    		for (var endpoint=startpoint; endpoint<config.paneloffsets.length; endpoint++){ //index (endpoint) of last visible panel
    			visiblewidth+=config.panelwidths[endpoint]
    			if (visiblewidth>config.gallerywidth){
    				break
    			}
    		}
    		startpoint+=1 //format startpoint for user friendiness
    		endpoint=(endpoint+1==startpoint)? startpoint : endpoint //If only one image visible on the screen and partially hidden, set endpoint to startpoint
    		var valuearray=[startpoint, endpoint, config.panelwidths.length]
    		for (var i=0; i<config.statusvars.length; i++){
    			window[config.statusvars[i]]=valuearray[i] //Define variable (with user specified name) and set to one of the status values
    			config.$statusobjs[i].text(valuearray[i]+" ") //Populate element on page with ID="user specified name" with one of the status values
    		}
    	},
    
    	setup:function(config){
    		//Disable Step Gallery scrollbars ASAP dynamically (enabled for sake of users with JS disabled)
    		document.write('<style type="text/css">\n#'+config.galleryid+'{overflow: hidden;}\n</style>')
    		jQuery(document).ready(function($){
    			config.$gallery=$('#'+config.galleryid)
    			config.gallerywidth=config.$gallery.width()
    			config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
    			config.$belt=config.$gallery.find('.'+config.beltclass) //Find Belt DIV that contains all the panels
    			config.$panels=config.$gallery.find('.'+config.panelclass) //Find Panel DIVs that each contain a slide
    			config.panelbehavior.wraparound=(config.autostep && config.autostep.enable)? true : config.panelbehavior.wraparound //if auto step enabled, set "wraparound" to true
    			config.onpanelclick=(typeof config.onpanelclick=="undefined")? function(target){} : config.onpanelclick //attach custom "onpanelclick" event handler
    			config.onslideaction=(typeof config.onslide=="undefined")? function(){} : function(beltobj){$(beltobj).stop(); config.onslide()} //attach custom "onslide" event handler
    			config.oninit=(typeof config.oninit=="undefined")? function(){} : config.oninit //attach custom "oninit" event handler
    			config.beltoffset=stepcarousel.getCSSValue(config.$belt.css('marginLeft')) //Find length of Belt DIV's left margin
    			config.statusvars=config.statusvars || []  //get variable names that will hold "start", "end", and "total" slides info
    			config.$statusobjs=[$('#'+config.statusvars[0]), $('#'+config.statusvars[1]), $('#'+config.statusvars[2])]
    			config.currentpanel=0
    			stepcarousel.configholder[config.galleryid]=config //store config parameter as a variable
    			if (config.contenttype[0]=="ajax" && typeof config.contenttype[1]!="undefined") //fetch ajax content?
    				stepcarousel.getremotepanels($, config)
    			else
    				stepcarousel.alignpanels($, config) //align panels and initialize gallery
    		}) //end document.ready
    		jQuery(window).bind('unload', function(){ //clean up
    			if (config.panelbehavior.persist){
    				stepcarousel.setCookie(window[config.galleryid+"persist"], config.currentpanel)
    			}
    			jQuery.each(config, function(ai, oi){
    				oi=null
    			})
    			config=null
    		})
    	}
    }
    
    
    
    HTML:
    and here is the header.php file that calls all of the errors

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    
    <head profile="http://gmpg.org/xfn/11">
    
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    
    <title>Daily FAIL Blog: A Great FAILBlog with EPIC Fail Pictures, Videos, and News Updated Daily for Your FAIL Pleasure!</title>
    
    <meta name="description" content="<?php bloginfo('description') ?>" />
    
    <meta name="keywords" content="demotivation, demotivation posters, demotivational, demotivational pictures, demotivational poster, demotivational posters, epic fail, epic win, fail, failblog, fail blog, fail demotivational, fail pictures, fail posters, failed, fails, lol, lol fail, lol internet, lol rofl, lol what, motivational fail, my lol, odd, odd news, omg lol, ownage, ownd, owned, owned pics, owned video, owned videos, poster demotivational, posters demotivational, pwnd, pwned, rofl lol, win, wtf, you got owned" /> 
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
    <!-- leave this for stats -->
    
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="all" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    
    <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/scroll.js"></script>
    
    <script type="text/javascript" > jQuery.noConflict();</script>
    
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-8083569-2");
    pageTracker._setDomainName(".dailyfailblog.com");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    
    
    
    
    
    <script type="text/javascript">
    
    <!--//--><![CDATA[//><!--
    
    sfHover = function() {
    
    	if (!document.getElementsByTagName) return false;
    
    	var sfEls = document.getElementById("catmenu").getElementsByTagName("li");
    
    	for (var i=0; i<sfEls.length; i++) {
    
    		sfEls[i].onmouseover=function() {
    
    			this.className+=" sfhover";
    
    		}
    
    		sfEls[i].onmouseout=function() {
    
    			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    
    		}
    
    	}
    
    }
    
    if (window.attachEvent) window.attachEvent("onload", sfHover);
    
    //--><!]]></script>
    
    
    
    <?php wp_get_archives('type=monthly&format=link'); ?>
    
    <?php //comments_popup_script(); // off by default ?>
    
    
    
    <?php 
    
    if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
    
    wp_head(); ?>
    	
    
    </head>
    
    <body>
    
    <center>
    
    <div style="margin: 10px 0px 10px 0px" >
    <script type="text/javascript"><!--
    google_ad_client = "pub-8651687579449791";
    /* 728x90, created 5/30/09 */
    google_ad_slot = "6839898674";
    google_ad_width = 728;
    google_ad_height = 90;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </div>
    
    </center>
    
    <div id="wrapper">
    
    
    
    
    <div class="clear"></div>
    
    <div id="top"> 
    
    <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    
    <div class="blogname">
    
    	<h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
    
    	<h2><?php bloginfo('description'); ?></h2>
    
    </div>
    
    
    
    <?php include (TEMPLATEPATH . '/headbanner.php'); ?>
    
    </div>
    
    
    
    
    
    <div id="catmenucontainer">
    
    
    
    	<div id="catmenu">
    
    			<ul>
    
    				<?php wp_list_categories('sort_column=name&title_li=&depth=4'); ?>
    
    			</ul>
    
    	</div>	
    
    		
    
    	<div id="catright"> 
    
    		<ul> 
    
    			<li class="cat-item-right">
    
    				<a href="http://dailyfailblog.com/contact/" title="Submit your FAIL">SUBMIT</a>
    
    			</li> 
    
    		</ul>
    
    	</div>	
    
    		
    
    		
    
    </div>
    
    <div class="clear"></div>
    
    <div id="casing">		
    
    PHP:
    If any other files are needed please let me know. Thanks!
     
    duanehaas, Jan 3, 2010 IP
  2. stuart.letterman

    stuart.letterman Guest

    Messages:
    143
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I'm no expert at php but this line looks iffy:

    <?php //comments_popup_script(); // off by default ?>

    Just a guess :eek:
     
    stuart.letterman, Jan 3, 2010 IP
  3. duanehaas

    duanehaas Active Member

    Messages:
    153
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    73
    #3
    Took that out and it didn't change anything... I'm really trying to lighten up my site (it was nearly 2 megs) and I think this theme has more crap stashed in it than I could ever imagine lol
     
    duanehaas, Jan 3, 2010 IP
  4. stuart.letterman

    stuart.letterman Guest

    Messages:
    143
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    2 Megs!

    You don't want to get to a point when you have more crap than content lol

    If I were you I'd add some text in about each picture and you'll rank better for them in Google, you can use the "see more" divider to hide the text from users. If all comes to worse then use a fresh version of a theme and re-build the site perhaps :confused:
     
    stuart.letterman, Jan 3, 2010 IP
  5. duanehaas

    duanehaas Active Member

    Messages:
    153
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    73
    #5
    I do add text using the more tag. If you click on comment on this funny picture it has a small snippet about what the picture is about.

    2 megs counts all of the photos as well... There are usually 9 full images on the front page at a size of about 50-75k each. I am slowly cutting away at it lol.

    Anyone got an answer to the above problem though?
     
    duanehaas, Jan 3, 2010 IP
  6. stuart.letterman

    stuart.letterman Guest

    Messages:
    143
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Aha, should be ok then ;)

    Do another thread on your problem named "anyone any good at PHP?", perhaps that'll get a lot of visits!
     
    stuart.letterman, Jan 4, 2010 IP
  7. duanehaas

    duanehaas Active Member

    Messages:
    153
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    73
    #7
    lol sounds like a plan thanks stuart!
     
    duanehaas, Jan 4, 2010 IP