$(function() {

	var height_content = $('.left-side').height();

	if ($.browser.msie && $.browser.version <= '6.0') {
	$('.content').css({height: height_content});
	} else {
	$('.content').css({minHeight: height_content});
	}

});




$(document).ready(function () {
	
	var images = $('div.tt');
	var num_images = images.size()-1;			
	var prev_image = 1;
	var cur_image = 0;
	function changeImage() {				
		prev_image = cur_image;
			cur_image = cur_image + 1;	
			if (cur_image > num_images) { cur_image = 0 };				
			$(images[cur_image]).fadeIn(1000);
			$(images[prev_image]).fadeOut(1000);
		}			
	setInterval(changeImage, 5500);	
	
	if ($.browser.msie) {
	$('#big-select li.hover').hover(function() {
			$(this).find('span b i').show();
		},function () {
			$(this).find('span b i').hide();
		});		
	} else {
	$('#big-select li.hover').hover(function() {
			$(this).find('span b i').fadeIn(200);
		},function () {
			$(this).find('span b i').fadeOut(200);
		});
	}
	
});