// JavaScript Document
$(document).ready(function() {
	//Change Title for the Apple Desctop Icon
	if(navigator.userAgent.indexOf('iPhone') != -1){
		// This the right environment
		document.title = 'Studio VENGA';
	}
	// Loading images on the page
	$('#preview').preloader();
	
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
		&& location.hostname == this.hostname) {
		  var $target = $(this.hash);
		  $target = $target.length && $target
		  || $('[name=' + this.hash.slice(1) +']');
		  if ($target.length) {
			var targetOffset = $target.offset().top - 120;
			$('html,body')
			.animate({scrollTop: targetOffset}, 1000 );
		   return false;
		  }
		}
	});

	
});

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-624790-4']);
_gaq.push(['_trackPageview']);

(function() {
  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
