(function($){
function demoLoad (){
var currentValue = false,
el = $('#demo-content span');
el.focus(function(){
currentValue = $(this).text();
});
el.keypress(function (e) {
if (e.which == 13) {
e.preventDefault();
updateIMG($(this));
}
})
el.focusout(function() {
updateIMG($(this));
});
function updateIMG(argu) {
if (argu.text() !== currentValue) {
var keywords = $('#keywords').text();
$('#demo-splash').html('
Loading New Demo Content');
startFlickrBomb();
} else {
return false;
}
}
}
demoLoad();
})(jQuery);