(function($) {

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



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

jQuery(".social_btn").hover(function () {
	jQuery(this).stop().animate({
		opacity: 0.5
	}, 250)
}, function () {
	jQuery(this).stop().animate({
		opacity: 2.0
	}, 250)
})

}





}(jQuery));
