Created
February 8, 2011 08:17
-
-
Save bkilshaw/816083 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#brandmenu div").click(function(){ | |
var newBackground = $(this).attr("background"); | |
var backgroundString = "transparenet url (img/" + newBackground + ") top left no-repeat"; | |
$("body").css("background", backgroundString); | |
if(newBackground == "intel_2a_1.png") { | |
$("#breakoutSession").show(); | |
} else { | |
$("#breakoutSession").hide(); | |
} | |
}); | |
$("#breakoutSessionMenu div").click(function() { | |
var newBackground = $(this).attr("background"); | |
var backgroundString = "transparenet url (img/" + newBackground + ") top left no-repeat"; | |
$("body").css("background", backgroundString); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment