/* Web Elements by TrueThemes */


(function($) {

/* ------------------------------------------------------------------------
Fire up Functions on Page Load
* ------------------------------------------------------------------------- */
jQuery(document).ready(function () {
	scrollTop();
	buttonHover();
	doTabsType1();
	doTabsType2();
	doAccordion();
	
});




/* ------------------------------------------------------------------------
Scroll to Top
* ------------------------------------------------------------------------- */
function scrollTop(){
	jQuery('a.scrollToTop').click(function(){ 
	jQuery('html, body').animate({scrollTop:0}, 'slow');
	return false; 
	});
}





/* ------------------------------------------------------------------------
Button Hover
* ------------------------------------------------------------------------- */
function buttonHover(){

jQuery(".button_style_1").hover(function () {
	jQuery(this).stop().animate({
		opacity: 0.7
	}, 250)
}, function () {
	jQuery(this).stop().animate({
		opacity: 1.0
	}, 250)
})

}




}(jQuery));
