$(document).ready(function () {
	
	$('#create-new').click(function() {
		window.location = '/admin/'+class_name+'/new';
	});
	
	var cacheImage1 = document.createElement('img');
  cacheImage1.src = '/images/logo_fb_hover.gif';
	var cacheImage2 = document.createElement('img');
  cacheImage2.src = '/images/logo_ms_hover.gif';
	var cacheImage3 = document.createElement('img');
  cacheImage3.src = '/images/logo_sc_hover.gif';
	var cacheImage4 = document.createElement('img');
  cacheImage4.src = '/images/logo_yt_hover.gif';
	
	$('#menu-facebook').mouseover(function() {
		$('img', this).attr('src', '/images/logo_fb_hover.gif');
	});
	$('#menu-facebook').mouseout(function() {
		$('img', this).attr('src', '/images/logo_fb.gif');
	});
	
	$('#menu-myspace').mouseover(function() {
		$('img', this).attr('src', '/images/logo_ms_hover.gif');
	});
	$('#menu-myspace').mouseout(function() {
		$('img', this).attr('src', '/images/logo_ms.gif');
	});
	
	$('#menu-soundcloud').mouseover(function() {
		$('img', this).attr('src', '/images/logo_sc_hover.gif');
	});
	$('#menu-soundcloud').mouseout(function() {
		$('img', this).attr('src', '/images/logo_sc.gif');
	});
	
	$('#menu-youtube').mouseover(function() {
		$('img', this).attr('src', '/images/logo_yt_hover.gif');
	});
	$('#menu-youtube').mouseout(function() {
		$('img', this).attr('src', '/images/logo_yt.gif');
	});
	
});

