// JavaScript Document written by Takedown, Inc. www.takedownmag.com //

/*main menu button rollovers*/

function main(){
	$("#home").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/home_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/home.jpg');});
	
	$("#artists").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/artists_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/artists.jpg');});
	
	$("#catalog").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/catalog_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/catalog.jpg');});
	
	$("#buy").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/buy_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/buy.jpg');});
	
	$("#free").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/free_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/free.jpg');});
	
	$("#comrades").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/comrades_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/comrades.jpg');});
	
	$("#contact").hover
	(function(){
	$(this).attr('src','images/main_menu_buttons/contact_o.jpg');},
	function(){
	$(this).attr('src','images/main_menu_buttons/contact.jpg');});
	
/* newsletter send button */

	$("#send_news").hover
	(function(){
	$(this).attr('src','images/send_button_o.jpg');},
	function(){
	$(this).attr('src','images/send_button.jpg');});

/*footer MySpace...button rollovers*/
    $("#myspace").hover
	(function(){
	$(this).attr('src','images/footer/myspace_over.png');},
	function(){
	$(this).attr('src','images/footer/myspace.png');});
	
	$("#tweeter").hover
	(function(){
	$(this).attr('src','images/footer/tweeter_over.png');},
	function(){
	$(this).attr('src','images/footer/tweeter.png');});
	
	$("#facebook").hover
	(function(){
	$(this).attr('src','images/footer/facebook_over.png');},
	function(){
	$(this).attr('src','images/footer/facebook.png');});

/*footer main menu rollovers*/
    $("#home_f").hover
	(function(){
	$(this).attr('src','images/footer/home_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/home_f.jpg');});
	
	$("#artist_f").hover
	(function(){
	$(this).attr('src','images/footer/artist_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/artist_f.jpg');});
	
	$("#catalog_f").hover
	(function(){
	$(this).attr('src','images/footer/catalog_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/catalog_f.jpg');});
	
	$("#buy_f").hover
	(function(){
	$(this).attr('src','images/footer/buy_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/buy_f.jpg');});
	
	$("#free_f").hover
	(function(){
	$(this).attr('src','images/footer/free_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/free_f.jpg');});
	
	$("#comrades_f").hover
	(function(){
	$(this).attr('src','images/footer/comrades_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/comrades_f.jpg');});
	
	$("#contact_f").hover
	(function(){
	$(this).attr('src','images/footer/contact_f_o.jpg');},
	function(){
	$(this).attr('src','images/footer/contact_f.jpg');});
}
//open and close or the artist dropdown menu
	
function displayartistmenu(){	
	$("#artist_dropdown").css("display","block");
	$("#drop_triangle").css("display","block");
	$("#artist_drop_close_button").css("display","block");
}
function hideartistmenu(){
	$("#artist_dropdown").css("display","none");
	$("#drop_triangle").css("display","none");
	$("#artist_drop_close_button").css("display","none");
}

//open and close or the artist dropup menu in footer
	
function displayartistmenuup(){	
	$("#artist_dropup").css("display","block");
	$("#dropup_triangle").css("display","block");
	$("#artist_dropup_close_button").css("display","block");
}
function hideartistmenuup(){
	$("#artist_dropup").css("display","none");
	$("#dropup_triangle").css("display","none");
	$("#artist_dropup_close_button").css("display","none");
}
