jQuery.noConflict();

jQuery(function($) { 
	
	if (($.browser.msie)) {
		var $li = $('#menu > li')
		$li.hover(function(){ $(this).addClass('over')}, function(){ $(this).removeClass('over')}).eq(0).addClass('first-child');
		$('#footer > li:first-child, #submenu > li:first-child, #cat > li:first-child, #news li:first-child').addClass('first-child');
		
		$('.csc-textpic-imagewrap img, #news .image img, .news-single-img img').boxShadow( 0, 0, 7, "#999");
		
	}
	
	$('#services').find('.csc-default:even').addClass('even')

	//Image Gallery
	$('#cabinet-page #left .csc-textpic').find('a').each(function(){
		var $this = $(this);
		this.onclick = ''; 
		
		$this.click(function(event){
			var $src = $this.attr('href');
			$.ajax({
				type: "GET",
				url: $src,
				success: function(html){
					html = html.substring(html.indexOf('<img'));
					html = html.substring(0,html.indexOf('/>')+2);
					$('#bigimg')
						.html(html);
				}
			});
			return false;
		});
		
	}).eq(0).click();

 });

