/*
	Site:		Artminister
	File:		/js/script.js
	Author:		vinay@artminister.com
	Version:	9-12-2010
	Usage : With jQuery

*/

// Back to Top

jQuery('a[href="#Wrapper"]').click(function(e){
  e.preventDefault();
  jQuery('html,body').animate({
    scrollTop:0
  },1000)
});
