#mediaCheck
This is a simple wrapper around matchMedia to run code on entry and exit from media queries.
##Demo There is a really basic example here: http://sparkbox.github.com/mediaCheck/
##Example:
mediaCheck({
media: '(max-width: 420px)',
entry: function() {
console.log('starting 420');
},
exit: function() {
console.log('leaving 420');
}
});