jQuery(document).ready(function($) {
	
	$("#troubleshootImage").fancybox({
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});
	
	
	// testimonials slideshow // content cycler
		$('#Testimonials .slideshow').cycle({
			timeout:8000,
			fx:'fade', 
			pause:1,
		// pager for slideshow navigation // Remove if not needed 
    		pager:  '#Testimonials .pager'
		});
	// end

	// General form cleanup
	$('.ContactButton').addClass('button');
	
	// Add CurvyBox to Create Account //
	$('.createaccount .Textbox, .createaccount select, .createaccount .JSHidden, #EditAccountForm .Textbox, #ShippingAddressForm .Textbox, #ShippingAddressForm select').addClass('CurvyBox');
	
	// Add CurvyBox to Contact Form //
	$('#ContactForm .Textbox, #ContactForm textarea').addClass('CurvyBox');
		
	// Checkout Overhaul //
	$('.checkout #CreateAccountButton, .checkout #LoginButton, .checkout .billingButton').addClass('button');	
	
	
	// paRSS plugin
		$("#BlogFeed").PaRSS(
		"http://eheat.com/rss.php?action=newblogs&type=rss",	// rss feed url (required)
		10,		// number of items (optional)
		"M j, Y",	// date format (optional)
		"shortblogs"         // display format (optional)
		);
	// end
	
});
