

// Accordion List
$(function() {
	$(".accordionlist").accordion({
		active: true,
		autoheight: false,
		alwaysOpen: false
	});
});


// Column Image Rollovers
$(function() {
	$(".image_box img").fadeTo(1, 0.2);
	$(".column_one, .column_two, .column_three, .services_column_one, .services_column_two").hover(function(){
		$(".image_box img", this).stop().fadeTo(600, 1.0);
		},function(){
		$(".image_box img", this).stop().fadeTo(600, 0.2);
	});
	
});


// Twitter Feed
$(function() {
	$("#twitter_feed").tweetable({username: 'envato', time: true, limit: 2});
});


// Form Validate Script
$(function() {
	$("#emarketingForm").validate();
	$("#cushyForm").validate();
	$("#subForm").validate();
	$("#contactForm").validate();
});


// Scroll Script
$(function(){	
	// scroll to top
	$("a#topOfPage").click(function(){
		$.scrollTo( 0, 500);
		return false;
	});
	
});



