$(function(){
	$('.bread_bar').css('width',789-41-$('.bread').width());
	
	$('.btns a').click(function(e) {
		e.preventDefault();
		var current = $('.btns a.active').attr('rel');
		var next = $(this).attr('rel');
		if (next != current) {
			$('.imgs div[rel='+current+']').removeClass('active');
			$('.imgs div[rel='+next+']').addClass('active');
			$('.btns a.active').removeClass('active');
			$(this).addClass('active');
		}
	});
	
	/*$('.contact_button input').hover(
		function (){
			$(this).css('background', 'url(../assets/img/site/bg2.gif) left top no-repeat');
		},
		function (){
			$(this).css('background', 'url(../assets/img/site/bg1.gif) left top no-repeat');
		}
	);*/
	
	setInterval("rotationTag()", 5000);
})

var current_tag = 1;

function rotationTag (){
	var next_tag = current_tag + 1;
		if (next_tag > 4) {
			next_tag = 1;
		}
			
		$('.imgs div.active').removeClass('active');
		$('.imgs div[rel='+current_tag+']').removeClass('active');
		$('.imgs div[rel='+current_tag+']').fadeOut(300);
		$('.imgs div[rel='+next_tag+']').addClass('active');
		$('.btns a.active').removeClass('active');
		$('.btns a[rel='+next_tag+']').addClass('active');
		
		current_tag = next_tag;	
}
